0% found this document useful (0 votes)
19 views3 pages

Assignment 1

Uploaded by

Bhagyesh Joshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views3 pages

Assignment 1

Uploaded by

Bhagyesh Joshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

1. WAP to display HELLO message on Applet.

Program:-

import java.awt.*;

import java.applet.*;

/*

<applet code="App1" width=300 height=300>

</applet>

*/

public class App1 extends Applet

public void paint (Graphics g)

g.drawString("HELLO",100,100);

Output:-
2. WAP to display following content on

Applet. Name - (Your name)


Class – (Your

class) Roll No –

Enrollment No –

Program:-

import java.awt.*;

import java.applet.*;

/*

<applet code="App2" width=300 height=300>

</applet>

*/

public class App2 extends Applet

public void paint (Graphics g)

g.drawString("Name:- Aditya Arun

Shinde",80,80); g.drawString("Class:-

TYCO",80,120); g.drawString("Roll No:-


15",80,160);

g.drawString("Enrollment No:- 1903690091",80,200);

}
Output:-

Name :- Bhagyesh Joshi

Class :- TYCO

Roll No :- 84

Enrollment No :- 1903690378

You might also like