1.

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. A simple applet created...
B. A simple applet created... 40 40
C. Runtime Error
D. Compilation Error
E. None of these
Answer» B. A simple applet created... 40 40


Discussion

No Comment Found

Related MCQs