0 of 4 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 4 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
What does the mystery1 function do?
def mystery1(x): return x * -3
What does the mystery4 function do?
def mystery4(x, y):
return x – y
What does the mystery7 function do?
def mystery7(x, y):
if (x <= 0):
return y
else:
return x
What is the output of the mystery12 function when called with an argument of 6?
def mystery12(x):
return x // 3
print(mystery12(6))