Game Preview

Pythonistas Quiz Show

  •  English    8     Public
    While Loop 8-item Quiz
  •   Study   Slideshow
  • This loop continues to execute the code repeatedly as long as the condition is True.
    While Loop
  •  10
  • TRUE or FALSE: For Loop is use when we don't know the number of times to iterate beforehand.
    FALSE
  •  10
  • Based on the given pictures, which of them shows the proper syntax of while loop?
    A
  •  10
  • TRUE or FALSE: In the while loop, the process of iteration will only stop when the test expression evaluates TRUE.
    FALSE
  •  10
  • In Python, what is the signal used to determine the body of the while loop?
    Indentation
  •  10
  • Observe the given flowchart, what do you think is the answer for Letter A and Letter B?
    A is TRUE. B is False.
  •  10
  • What is output for this code?
    55
  •  15
  • What is the output for this code?
    Thank you! Thank you! Thank you!
  •  15