Q10Numerical3 Marks13 Apr 2025
Consider the following Python code snippet:
How many times will the statement print("Hello") be executed?
```
count = 0
for i in range(3):
for j in range(i, 3):
for k in range(j, 3):
print("Hello")
```
Press Enter to check.