2020-08-13 12:00:20 +02:00
|
|
|
---
|
|
|
|
id: 5e6a54c358d3af90110a60a3
|
|
|
|
challengeType: 11
|
|
|
|
videoId: aRY_xjL35v0
|
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
|
|
What will the following program print out:
|
|
|
|
|
|
|
|
```python
|
|
|
|
x = 43
|
|
|
|
x = x + 1
|
|
|
|
print(x)
|
2020-08-13 12:00:20 +02:00
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
## --answers--
|
|
|
|
|
|
|
|
x
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
x + 1
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
|
|
|
|
|
|
# --solutions--
|
|
|
|
|