logo Practice-It logo

BJP4 Self-Check 3G.3: fillRectErrors

Language/Type: Java DrawingPanel errors Graphics
Author: Roy McElmurry (on 2016/09/08)

The following code attempts to draw a filled black outer rectangle with a white filled inner circle inside it:

DrawingPanel panel = new DrawingPanel(200, 100);
Graphics g = panel.getGraphics();
g.setColor(Color.WHITE);
g.fillOval(10, 10, 50, 50);
g.setColor(Color.BLACK);
g.fillRect(10, 10, 50, 50);

However, it is incorrect. Find the mistakes and correct the code below.

Type your solution here:


This problem asks for bare code. Submit a fragment of Java code as described. Do not write any class or method heading around your code; just write the lines of code that will produce the result described.

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.