0% found this document useful (0 votes)
3 views22 pages

Practical Advance Java

The document is an index of Java programming tasks, including applet creation, GUI components using AWT and Swing, JDBC queries, and servlet programming. Each task is accompanied by specific Java program files and HTML references. The tasks cover various aspects of Java programming, such as employee information display and basic arithmetic functions.

Uploaded by

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

Practical Advance Java

The document is an index of Java programming tasks, including applet creation, GUI components using AWT and Swing, JDBC queries, and servlet programming. Each task is accompanied by specific Java program files and HTML references. The tasks cover various aspects of Java programming, such as employee information display and basic arithmetic functions.

Uploaded by

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

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

You might also like