// Control Flow

Control Flow Quiz

// question 1 of 10
What is the result of 5 > 2?
// question 2 of 10
What does else do?
// question 3 of 10
What is printed? for i in range(2): print(""**"")?
// question 4 of 10
What is printed? x=1 while x<=3: print(x) x+=1?
// question 5 of 10
What is printed? if 4 < 5 and 2 > 3: print(""A"")?
// question 6 of 10
What are star patterns usually built with?
// question 7 of 10
What is printed? while False: print(""A"")?
// question 8 of 10
What does for do?
// question 9 of 10
What is printed? for i in range(3): print(i+1)?
// question 10 of 10
What is printed? if not True: print(""Yes"")?