|
|
|
|
|
|
|
|
|
|
|
v |
Suppose
you have a variable that represents the total amount of
|
|
a
loan. What is a good name for this
variable?
|
|
|
loanAmount or loan_amount
|
|
|
v |
Suppose
the computer executes the following statements. What
|
|
|
is
the value of total at the end?
|
|
|
|
x = 1
|
|
|
|
total = x + 3
|
|
|
|
total
is 4
|
|
|
v |
What
is the value of squid after executing these statements?
|
|
|
|
clam = 1
|
|
|
|
squid = 4 + 2*clam
|
|
|
|
squid
is 6
|
|