44.4k views
5 votes
The code relies on the circle() procedure from a drawing library, which accepts four parameters for the circle's fill color, x position, y position, and diameter. Here's what's drawn from one run of the program: two circles with two black circles inside them. Which of these best describes what his program can draw?

1) Two equally-sized eyes ranging in size, with a minimum size of 6 pixels and a maximum size of 19 pixels. Each eye has a black pupil that ranges in size from a minimum of 3 pixels to a max of 4 pixels.
2) Two equally-sized eyes ranging in size, with a minimum size of 5 pixels and a maximum size of 19 pixels. Each eye has a black pupil that ranges in size from a minimum of 2 pixels to a max of 4 pixels.
3) Two equally-sized eyes ranging in size, with a minimum size of 6 pixels and a maximum size of 20 pixels. Each eye has a black pupil that ranges in size from a minimum of 3 pixels to a max of 5 pixels.
4) Two equally-sized eyes ranging in size, with a minimum size of 5 pixels and a maximum size of 20 pixels. Each eye has a black pupil that ranges in size from a minimum of 2 pixels to a max of 5 pixels.

User Davidcelis
by
7.1k points

1 Answer

5 votes

Final answer:

The program can draw two equally-sized eyes ranging in size, with a minimum size of 6 pixels and a maximum size of 19 pixels. Each eye has a black pupil that ranges in size from a minimum of 3 pixels to a maximum of 4 pixels.

Step-by-step explanation:

The program can draw two equally-sized eyes ranging in size, with a minimum size of 6 pixels and a maximum size of 19 pixels. Each eye has a black pupil that ranges in size from a minimum of 3 pixels to a maximum of 4 pixels. The program uses the circle() procedure from a drawing library, which accepts four parameters for the circle's fill color, x position, y position, and diameter.

User David Pratte
by
7.7k points