Which of the following objects are input to the paint() method?

Options
- Canvas
- Graphics
- Paint
- Image


CORRECT ANSWER : Graphics

Discussion Board
paint() method

paint() method includes graphics as input to display or paint the browser window. It is Invoked immediately after the start() method, and also any time the applet needs to repaint itself in the browser. The paint() method is actually inherited from the java.awt. The example is given as follows:

import java.applet.*;
import java.awt.*;

public class HelloWorldApplet extends Applet
{
public void paint (Graphics g)
{
g.drawString ("Hello World", 25, 50);
}
}

These import statements bring the classes into the scope of the applet class:

java.applet.Applet.

java.awt.Graphics.

Without those import statements, the Java compiler would not recognize the classes Applet and Graphics, which the applet class refers to.

Rohit Sharma 09-30-2014 04:51 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement