Practical 2.2 //develop Applet/application To Select Mutiple Names of Newspaper

Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 2

Practical 2.

2
//develop applet/application to select mutiple names of newspaper
import java.awt.*;
import
java.applet.*;
public class Newspaper extends Applet
{
public void init()
{
List l1=new List(10,true);
l1.add("The Indian
Express"); l1.add("The Times
of India"); l1.add("Lokmat");
l1.add("Hindhustan Times");
add(l1);
}
}
/*<applet code="Newspaper.java" width=300 height=300></applet>*/

You might also like