INDEX
DAT
SN. TITLE/PROGRAM PAGE SIGN
E
1. Write a Java program to create an Applet. 1-2
Write a Java program to create an Applet that
reads Employee information using parameters
2. and displays name of employee, designation,
3-4
salary and tax.
Write a Java program that displays 4 buttons
3. using AWT.
5-6
Write a Java program that displays Text Field,
4. Check Box and Radio Button using Swing.
7-8
Write a Java Program to create multiple frames,
which create a Frame2 with a back button, such
5. that when a user clicks back button, Frame 2 is
9-10
closed, and we see the Frame1 only.
Write a Java Program to create a frame using
Swing in which create a push button with a
6. label and image. When the button is clicked an
11-12
image is displayed in the Frame.
Write a Java Program to execute select Query
7. using JDBC.
13-14
Write a Java Program for basic Arithmetic
8. Functions such as Addition, Subtraction, 15-16
Multiplication and Division using JSP.
Write a Servlet program to create a simple
9. Servlet and test it.
17-18
Write a Java program to create a bean that
10. displays employee name, salary, 19-20
designation and company.
“ PROGRAMS ”
1. Write a Java program to create an Applet.
SimpleApplet.java
Applet1.html
2. Write a Java program to create an Applet that reads
Employee information using parameters and displays name
of employee, designation, salary and tax.
EmployeeApplet.java
Applet2.html
3. Write a Java program that displays 4 buttons using
AWT.
4. Write a Java program that displays Text Field, Check
Box and Radio Button using Swing.
5. Write a Java Program to create multiple frames, which
create a Frame2 with a back button, such that when a user
clicks back button, Frame 2 is closed, and we see the
Frame1 only.
6. Write a Java Program to create a frame using Swing in
which create a push button with a label and image. When
the button is clicked an image is displayed in the Frame.
7. Write a Java Program to execute select Query using JDBC.
8. Write a Java Program for basic Arithmetic Functions
such as Addition, Subtraction, Multiplication and Division
using JSP.
9. Write a Servlet program to create a simple Servlet and test
it.
HelloServlet.java
web.xml
10. Write a Java program to create a bean that displays
employee name, salary, designation and company.
EmployeeBean.java
TestEmployee.java
PROGRAMS