Basic Applet example question
Q. The following example shows the creation of a
import java.applet.*;
import java.awt.*;
public class Main extends Applet{
public void paint(Graphics g){
g.drawString("Welcome in Java Applet.",40,20);
}
}- Published on 19 Oct 15a. Banner using Applet
b. Basic Applet
c. Display clock
d. None of the above
ANSWER: Basic Applet