Practical 1
Practical 1
*;
import java.awt.event.*;
Label lbl;
Checkbox c1,c2,c3,c4;
practical1() {
super();
this.setTitle("language selection");
this.setLayout(new FlowLayout());
this.add(this.c1);
this.add(this.c2);
this.add(this.c3);
this.add(this.c4);
this.addWindowListener(new WindowAdapter() {
dispose();
System.exit(0);
});
this.setSize(500, 300);
this.setVisible(true);
new practical1();