Skip to main content

Section 1.21 Expressions-WE7-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. If = statement, is Left Hand Side (LHS) a variable? Check data type of copied value against data type of variable
  5. Update variable for post operators based on side effect

Subsection 1.21.1

Given
int alpha = 2, beta = 1, delta = 3, eta, gamma;
double omega = 2.5, theta = -1.3, kappa = 3.0, lambda, rho;

Exercises Exercises

1.
Q46: gamma = delta + ++beta / alpha--;
What is the value of alpha after execution?
2.
Q47: gamma = delta + ++beta / alpha--;
What is the value of beta after execution?
3.
Q48: gamma = delta + ++beta / alpha--;
What is the value of gamma after execution?
4.
Q49: gamma = alpha + ++beta / delta--;
What is the value of beta after execution?
5.
Q50: gamma = alpha + ++beta / delta--;
What is the value of delta after execution?
6.
Q51: gamma = alpha + ++beta / delta--;
What is the value of gamma after execution?
You have attempted of activities on this page.