Skip to main content
Contents
Dark Mode Prev Up Next Scratch ActiveCode Profile
\(
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 2.8 Expressions-WE3-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.8.1
int alpha = 2;
int beta = 1;
int delta = 4;
int eta, gamma;
double omega = 2.5;
double theta = -1.3;
double kappa = 3.0;
double lambda, rho;
Exercises Exercises
1.
Q17: lambda = beta * theta;
valid
Correct
invalid
Incorrect
2.
Q18: eta = alpha * kappa;
valid
Incorrect
invalid
Correct
3.
Q19: alpha = beta + delta;
valid
Correct
invalid
Incorrect
4.
Q20: beta = beta * alpha;
valid
Correct
invalid
Incorrect
You have attempted
of
activities on this page.