Awt Applet We will have to make use of the HTML tag , to include the applet. <applet code=”classname” height=px width=px> </applet> PROGRAM-1 import java.applet.*; import java.awt.*; /* <applet code=”AppletDemo” height=200 width=200> </applet> */ public class AppletDemo extends Applet { String s; public void init() { ...
FOR EVERY PROGRAMMER SOME SPECIAL PROGRAMS WITH THEORY.