2020-05-27 13:19:11 +05:30

498 B

id, title, challengeType, isRequired, videoId
id title challengeType isRequired videoId
5e7b9f060b6c005b0e76f05c Loops and Iterations 11 true dLA-szNRnUY

Description

Tests

question:
  text: 'What will the following code print out:
<pre>
n = 0<br>
while True:<br>    if n == 3:<br>        break<br>    print(n)<br>    n = n + 1</pre>'
  answers:
    - '0<br>1<br>2'
    - '0<br>1<br>2<br>3'
    - '1<br>2'
    - '1<br>2<br>3'
  solution: 1