0 of 6 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 6 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)
condition = False
print('1')
if (condition == False):
print('2')
print('3')
condition = True
print('1')
if (condition == True):
print('2')
print('3')
condition = False
print('1')
if (condition == True):
print('2')
else:
print('3')
print('4')
condition1 = True
condition2 = True
print('1')
if (condition1 == True):
if (condition2 == False):
print('2')
print('3')
else:
print('4')
print('5')
condition1 = False
condition2 = True
print('1')
if (condition1 == True):
print('2')
else:
if (condition2 == True):
print('3')
else:
print('4')
print('5')
print('6')
Do you find the quizz challenging enough?