Skip to main content
Contents
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.3 Expressions-WE1-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 2.3.1
int alpha, gamma;
int beta = 1;
double omega = 2.5;
double theta, lambda;
Exercises Exercises
1.
What is the value of alpha?
2.
Why is this statement invalid?
cannot assign a double to an int variable
lambda does not have a value
omega does not have a value
cannot assign an int to a double variable
3.
What is the value of theta?
4.
What is the value of omega?
5.
Why is this statement invalid?
cannot assign a double to an int variable
lambda does not have a value
theta does not have a value
cannot assign an int to a double variable
You have attempted
of
activities on this page.