Question: Variables Implicit or Explicit? Follow the instructions below. int num1 = 6; float num2; Assign the value of num1 to num2. double num1 = 12.2;
| Variables | Implicit or Explicit? | Follow the instructions below. |
|
int num1 = 6; float num2;
|
|
Assign the value of num1 to num2.
|
|
double num1 = 12.2; float num2;
|
|
Assign the value of num1 to num2.
|
|
double num1 = 8.6; int num2;
num2 = num1;
|
|
Fill in the error message youd receive.
error: incompatible types: possible lossy conversion from __________ to __________.
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
