logo Practice-It logo

BJP5 Self-Check 3G.5: Draw7output

Language/Type: Java DrawingPanel for loops Graphics mystery
Author: Marty Stepp (on 2019/09/19)

Consider the following Draw7 program:

import java.awt.*;

public class Draw7 {
    public static void main(String[] args) {
        DrawingPanel panel = new DrawingPanel(200, 200);
        Graphics g = panel.getGraphics();
        for (int i = 0; i < 20; i++) {
            g.drawOval(i * 10, i * 10, 200 - (i * 10), 200 - (i * 10));
        }
    }
}
What graphical output figure will be drawn by the Draw7 program?
(order shuffled)

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.