Skip to main content
Contents
Prev Up Next Scratch ActiveCode Profile
\(\newcommand{\N}{\mathbb N}
\newcommand{\Z}{\mathbb Z}
\newcommand{\Q}{\mathbb Q}
\newcommand{\R}{\mathbb R}
\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.15 Evaluate Expressions-WE5-P2
Subgoals for evaluating an assignment statement.
Decide order of operations
Determine operator behavior based on operands
Operator and operands must be compatible
Solve arithmetic, expression, or operation
Subsection 2.15.1
For the assignment statements below, either give the new value of the assigned variable, or enter βinvalidβ if the statement would result in an error. Each problem is independent of the others (e.g. Question 2 does not depend on Question 1, only the βGivenβ code).
Subsection 2.15.2 Expressions-WE5-P2
alpha = 2
beta = 1
delta = 3
omega = 2.5
theta = -1.3
kappa = '3'
Exercises Exercises
1.
2.
3.
4.
Why is this statement invalid?
omega does not have a value
cannot multiply a string by a non-integer value
cannot perform string operations on a number
cannot perform math operations on a string
You have attempted
of
activities on this page.