OOP with Java Lab /21CSL35
PROGRAM :12
12. A. Develop an applet that displays a simple message in center of the screen.
Aim: Introduce java Applet, awt, swings.
PROGRAM:
import [Link];
import [Link];
/*
<applet code="[Link]" width="300" height="300">
</applet>
*/
public class AppletP extends Applet
{
public void paint(Graphics g)
{
[Link]("Welcome to applet",100,150);
}
}
OUTPUT:
Prof. Imran Ulla Khan, Dept. of CSE,SKIT 2022-23