What Is The Message Is Displayed In The Applet Made By The #964
What is the Message is displayed in the applet made by the following Java program?</p> <pre><code class="language-java" line="1"> import java.awt.*; import java.applet.*; public class myapplet extends Applet { public void paint(Graphics g) { g.drawString("A Simple Applet", 20, 20); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java IO Applets - Java Applets Fundamentals - Quiz No.1.
What is the Message is displayed in the applet made by the following Java program?
import java.awt.*; import java.applet.*; public class myapplet extends Applet { public void paint(Graphics g) { g.drawString("A Simple Applet", 20, 20); } }
A Simple Applet
A Simple Applet 20 20
Compilation Error
Runtime Error