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

428 B

id, title, challengeType, isHidden, isRequired, videoId
id title challengeType isHidden isRequired videoId
5e6a54c358d3af90110a60a3 Introduction: Elements of Python 11 true true aRY_xjL35v0

Description

Tests

question:
  text: 'What will the following program print out:
<pre>x = 43<br>
x = x + 1<br>
print(x)</pre>'
  answers:
    - 'x'
    - 'x + 1'
    - '44'
  solution: 3