Section 2.18 Expressions-WE6-P1
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 2.18.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;
Each question does NOT build off of previous questions. Assume that all variables are redeclared with their original values before each question.
Exercises Exercises
2.
3.
4.
5.
6.
7.
8.
You have attempted 1 of 3 activities on this page.