Skip to main content

Section 2.16 Expressions-WE5-P2

Subgoals for evaluating an assignment statement.

  1. Determine resultant data type of expression
  2. Update variable for pre operators based on side effect
  3. Solve arithmetic equation, operator precedence
  4. 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.
  5. Update variable for post operators based on side effect

Subsection 2.16.1

Given
int alpha = 2;
int beta = 1;
int delta = 3;
int eta;
int gamma;

double omega = 2.5;
double theta = -1.3;
double kappa = 3.0;
double lambda;
double rho;

Exercises Exercises

1.
    Q32: delta += omega;
    Why is this statement invalid?
  • cannot assign a double to an int variable
  • += is an invalid operator
  • delta cannot be reassigned
  • cannot assign an int to a double variable
2.
Q33: alpha *= beta + delta;
What is the value of alpha?
You have attempted of activities on this page.