EXAM QUESTIONS WILL COME FROM
HERE (Latest Update )
Questions & Answers {Grade A} 100%
Correct
Variable_names_cont1 — try it*Enter into check() what a user would see as the output
of this code.
Local = 10
10
Nothing
The code will produce an error. - correct answer nothing
Variable_names_cont2 — try it*Enter into check() what a user would see as the output
of this code.
Global = 10
-- jessica note - the 'global' is in green
,10
Nothing
The code will produce an error. - correct answer the code will produce an error
Variable_assignment1 — try it*Enter into check() what a user would see as the output
of this code.
One = 2
#two = 1
Three = 3
Print( one + two + three )
4
5
6
7
The code will produce an error. - correct answer the code will produce an error
,Variable_assignment2 — try it*Enter into check() what a user would see as the output
of this code.
One = 2
Two = 1
Three = 3
Print( one + two + three )
4
5
6
7
The code will produce an error. - correct answer 6
Variable_assignment3 — try it*Enter into check() what a user would see as the output
of this code.
One = 1
Two = 1
Three = 3
, Print( one + two + three )
4
5
6
7
The code will produce an error. - correct answer 5
Variable_name_quality1 — try it*Enter into check() the least informative name for a
variable describing an amount of money in possession.
Currency
Funds
Amount
Dollars - correct answer amount
Reassignment1 — try it*Enter into check() the number of the option that gives the final
value of z2 after running this code.
Z1 = 5