-
What is the Message is displayed in the applet made by this program?
import java.awt.*;
import java.applet.*;
public class TextApplet extends Applet
{
public void paint(Graphics g)
{
g.drawString("A Simple Applet created...", 40, 40);
}
}
-
- A simple applet created...
- A simple applet created... 40 40
- Runtime Error
- Compilation Error
- None of these
Correct Option: A
A simple applet created...
(Output comes in a new java application)