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.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
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
1.
Q34:
rho = alpha / kappa + --beta;
What is the value of beta after execution?
2.
Q35:
rho = alpha / kappa + --beta;
What is the value of rho? Round to 4 decimal points.
3.
Q36:
eta = ++alpha * --delta
What is the value of delta after execution?
4.
Q37:
eta = ++alpha * --delta
What is the value of alpha after execution?
5.
Q38:
eta = ++alpha * --delta
What is the value of eta?
6.
Q39:
gamma = alpha / --delta + ++beta;
What is the value of delta after execution?
7.
Q40:
gamma = alpha / --delta + ++beta;
What is the value of beta after execution?
8.
Q41:
gamma = alpha / --delta + ++beta;
What is the value of gamma after execution?
You have attempted
of
activities on this page.