// Control Flow

Control Flow Quiz

// question 1 of 10
What happens after break?
// question 2 of 10
What is printed? for i in range(5): if i==3: continue else: print(i)?
// question 3 of 10
What is the result of 4 != 5?
// question 4 of 10
What is a nested loop?
// question 5 of 10
What does break do in a while loop?
// question 6 of 10
What is printed? if not (5 > 2): print(""OK"")?
// question 7 of 10
What is printed? if 10 > 5: print(""Big"") else: print(""Small"")?
// question 8 of 10
What is printed? if False: print(""A"") else: print(""B"")?
// question 9 of 10
What is printed? for i in range(2): for j in range(3): print(j)?
// question 10 of 10
What is printed? for i in range(3): print(""#""*i)?