1.4.2. Expressions-WE4-P2¶
Subgoals for evaluating an assignment statement
Determine resultant data type of expression
Update variable for pre-increment or pre-decrement operators (side effect)
Evaluate arithmetic expression according to operator precedence
If an assignment statement (=), is Left Hand Side (LHS) a variable? Check data type of value against data type of variable.
Update variable for post-increment or post-decrement operators (side effect)
For the assignment statements below, either give the new value of the assigned variable, or explain why the statement is invalid. Each problem is independent of the others (e.g. Question 2 does not depend on Question 1, only the “Given” code). If you must round a numeric answer, use 4 decimal places of precision.
Expressions-WE4-P2
Given
int alpha = 2, beta = 1, delta = 3, eta, gamma;
double omega = 2.5, theta = -1.3, kappa = 3.0, lambda, rho;
Q27: lambda = alpha / kappa + delta;
- cannot assign a double to an int variable
- eta does not have a value
- eta is a constant
- cannot assign an int to a double variable
Q28: eta = alpha * beta + (omega – theta) * kappa;
Why is this statement invalid?
Given
int r = 8;
double volume;
- volume = 4 / 3 * 3.14 * r * r * r;
- volume = 4 / 3 * 3.14159 * r * r * r;
- volume = 4.0 / 3 * 3.14 * r * r * r;
- An accurate result is not possible with these data types.
Q29: Which statement will calculate the volume of a sphere most accurately?