question: 3\nwhat is the correct way to draw a circle that is filled in?\nbegin_fill()\ncircle(20)\nend_fill(…

question: 3\nwhat is the correct way to draw a circle that is filled in?\nbegin_fill()\ncircle(20)\nend_fill()\ncircle(20)\nbegin_fill()\nend_fill()\ncircle(begin_fill, 20, end_fill)\ncircle(20)\nend_fill()
Answer
Brief Explanations:
In programming to draw a filled - in circle, the begin_fill() function is called before drawing the circle to start the filling process, then the circle() function is used to draw the circle with a specified radius, and finally the end_fill() function is called to end the filling. The correct order is begin_fill(), circle(), end_fill().
Answer:
A. begin_fill() circle(20) end_fill()