Quantcast
Channel: Teaching Software Carpentry » Round 11/3
Viewing all articles
Browse latest Browse all 20

conditional statement assessment

$
0
0

Here are a couple of assessments that I put together for conditional statements. This is related to my concept map on this topic.

1. What is printed by the following block of python code?


x = 300
if x >= 42:
  print "x",
elif x >= 25:
  print "y",
else:
  print "z"

(a) x
(b) x y
(c) y
(d) z
(e) x y z
(f) none of the above

2. Fill in each blank with exactly one of the following phrases: can have, must have, or can’t have.

2.1 An if ___________ a condition.
2.2 An if ___________ an elif.
2.3 An if ___________ an else.
2.4 An else ___________ a condition.
2.5 An else ___________ an execution block.


Viewing all articles
Browse latest Browse all 20

Trending Articles