❓Multiple Choice Question
Create a Multiple Choice Question Test
Which of the following functions prints the first `n` [perfect squares](https://en.wikipedia.org/wiki/Perfect_square)```python
def print_first_n_squares(n):
for i in range(1, n + 1):
print(i * i)
```
Workflow suggestions:
Hiding information from the student
Limited amount of submissions
Example

AutoTest Snapshot and Test Student Submission


Last updated