Section 1.34 Expressions-WE11-P2
Subgoals for evaluating an assignment statement.
-
Determine resultant data type of expression
-
Update variable for pre operators based on side effect
-
Solve arithmetic equation, operator precedence
-
Is the Left Hand Side (LHS) of the assignment statement a variable? Check the data type of the value on right hand side (RHS) against data type of LHS variable.
-
Update variable for post operators based on side effect
Subsection 1.34.1
Given
int alpha = 2;
int beta = 1;
int delta = 3;
int eta, gamma;
double omega = 2.5;
double theta = -1.3;
double kappa = 3.0;
double lambda, rho;
Exercises Exercises
2.
Q81: gamma = Math.sqrt(25);
Why is this statement invalid?
-
cannot assign a double to an int variable
-
Correct
-
gamma does not have a value
-
Incorrect
-
Math.sqrt is illegal
-
Incorrect
-
cannot assign an int to a double variable
-
Incorrect
You have attempted of activities on this page.
