226k views
1 vote
Pick the correct response for each of the following questions.

5. What happens when the mouse is pressed while running the following code?
c = Circle (200, 200, 50)
def onMousePress (mousex,_ mouseY):
c. radius = c.radius 10
[2 points]
O a. The circle gets smaller.
O b. The circle gets bigger.
O c. There is an error because c has no radius property.
O d. There is an error because we can only add to the radius using +=.

1 Answer

4 votes

Final answer:

When the mouse is pressed while running the code, the circle gets bigger.


Step-by-step explanation:

When the mouse is pressed while running the code, the circle gets bigger. This is because the line of code c.radius = c.radius + 10 increases the radius of the circle by 10 units each time the mouse is pressed. Therefore, the circle will gradually grow larger as the mouse is pressed multiple times.


Learn more about Circle radius manipulation

User Jmdeldin
by
7.5k points