0% found this document useful (0 votes)
51 views245 pages

Java File

Java file

Uploaded by

suresh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
51 views245 pages

Java File

Java file

Uploaded by

suresh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 245

SEC-9 DWARKA , NEW DELHI-110077

(BACHELOR’S OF COMPUTER AND APPLICATIONS)


( PRACTICAL FILE )
JAVA

SUBMITTED BY :- SUBMITTED TO:-


SURESH MAKOL KOMAL DHINGRA
ENROLLMENT NO.:- (LECTURER)
04950102020

Page 1 | 245
INDEX

S.NO. PROGRAM NAME PAGE TEACHER’S


NO. SIGNATURE
1. Program to input a character from user and determine 09
its ASCII value.

2. program to input marks in three subjects and print the 10


average in three subjects.

3. program to print Java Buzzwords through command 12


line arguments

4. program to print the Floyd's triangle. 14


1

23

456

7 8 9 10
5. Write a program to demonstrate the Methods in Math 16
class.

6. Write a program that will read a real number from the 18


keyboard and print output in one line.

7. Write a program to determine the largest element in a 20


one-dimensional array.

8. Write a program to input two matrices, display them 22


and print the addition.

9. Write a program to input two matrices, display them 26


and print the multiplication.

Page 2 | 245
10. Write a program to read the income and print the 29
income tax due.

11. Write a program to develop a calculator using switch 31


case.

12. Write a program to demonstrate the static method. 34

13. Write a program to determine the sum of the following 35


series 1+x+x^2/2!+x^3/3!+..........................+N terms
where N is input by the user.
14. Write a program to determine the sum of 2D array using 37
for-each loop

15. Write a program to search an element in 1D array using 39


for-each loop.

16. Write a program to demonstrate the jagged arrays/ 41


irregular arrays in java.

17. Write a program displaying the name and enrolment no 44


of 3 students using the concept of array of objects.

18. Write a program to create an ArrayList and perform 49


given functions.

19. Create a Multiplication quiz using the concept of 55


ArrayList where two numbers are randomly generated
and the user is asked to determine the result of
multiplication depend on given condition.
20. Write a program to perform operations of Bank class. 58

21. Write a program to demonstrate the concept of 62


Constructor chaining.

22. Write a program to demonstrate Constructor 65


overloading in java.

Page 3 | 245
23. Write a program to demonstrate the concept of private 67
constructors.

24. Write a program to demonstrate method overloading. 69

25. Write a program to demonstrate usage of final keyword 72


as a constant, final method and final class.

26. Write a program to demonstrate the concept of method 74


overriding.

27. Write a program to create classes retrieving individual 76


information as and when required from the given
diagram..
28. Write a program to use the concept of dynamic method 82
dispatch.

29. Write a program to demonstrate the concept of package. 85

30. Write a program to demonstrate the concept of 87


Interface.

31. Use the concept of Nested Interface to determine if the 90


given number is negative or not.

32. Write a program to implement the concept of multiple 92


inheritance using interfaces in Java.

33. Write the program to implement the concept of default 95


methods in interfaces.

34. Write a program to demonstrate the concept of 97


unchecked exception.

35. Write a program to read a file using FileReader class 98


and handle the checked exceptions
FileNotFoundException and IOException. Close the
FileReader object in finally block.

Page 4 | 245
36. Write a program to create a user defined Exception, 100
VoterException. The exception is thrown when the age
of person is less than 18.
37. Write a program to implement the concept of chained 103
exception.

38. Use MultiCatch to handle FileNotFoundException and 105


ArithmeticException while reading the file.

39. Write a program to create a thread using thread class. 108

40. Write a program to create a thread using Runnable 110


interface.

41. Write a multithreaded program in Java. 112

42. Write a program to demonstrate the concept of daemon 120


thread.

43. Write a multithreaded program in which the main 122


thread prints the number between 1 to 30. Create a child
thread that prints squares of number from 1 to 30
according to given scenario.
44. Write a program to demonstrate yield method in 125
multithreading.

45. Write a program with three threads adding one rupee 127
each to the balance. Use the concept of thread
synchronization such that each thread shows the correct
balance.
46. Write a program to suspend and resume a thread. Create 129
two custom methods for the same.

47. Write a program to solve the producer consumer 133


problem. Consumer should wait till producer produce
it and producer shall wait till consumer consumes.

Page 5 | 245
Producer should produce the next item only when
consumer consumes it.
48. Write a program to create deadlock condition. 138

49. Write a program using String Class and perform its 142
method.

50. Write a program to split the System Date obtained using 159
LocalDate class defined in java.time on delimiter “-”
and display the date, month and year.
51. Write a program to check the given pattern is in string 161
or not.

52. Write a program to demonstrate the given operation of 163


String Buffer class.

53. Use BufferedReader to read your name, rollno, marks 167


in three subjects and section. Display the
name, rollno, section and percentage.
54. Read a file using BufferedReader. Use try with 171
resources statement.

55. Implement mark() and reset() methods on 173


BufferedInputStream reading a file.

56. Implement unread() method of PushbackReader. 176

57. Write a program to copy the contents of one file to 179


another in java. Use FileReader and FileWriter
stream classes.
58. Create an applet to draw an image and text. 182

59. Create an applet to showing moving banner. 184

Page 6 | 245
60. Create an applet to display the color based on three 187
scrollbars for red, green and blue respectively.

61. Create an applet to display the student details (name 190


and rollno) on applet. Pass the parameters
through html file.
62. Write a program to create a registration page with 192
different details of user that is, username
,password,country,address,and submit button using the
Flow layout and awt package.
63. Write a program to create a registration page with 196
different details of the user that is,
username,password,country,address,and submit button
using the Null layout and awt package.
64. Write a program to demonstrate Border Layout. Use 201
concept of Adapter Classes to close the frame.

65. Write a program to develop a GUI calculator using 206


frames.

66. User Registration form using swings (Q-62 AWT) 216


along with the events

67. Create a JTabbedPane to show your subjects till 224


semester 4. The semester 4 subjects should be
added in a JList
68. Create a JTable to show name, rollno and marks of 228
student. Add the JTable to JScrollPane

69. To obtain the InetAddress given 230


a) Hostname
b) IP Address
To obtain Hostname and IP address given the
InetAddress

Page 7 | 245
70. To perfom client server communication using TCP 232
Sockets.

71. To perfom client server communication using UDP 235


Datagrams.

72. To perform create, insert, update and delete operations 238


on database using Statement.

73. To perform create, insert, update and delete operations 240


on database using PreparedStatement.

74. Create a web page containing username and password. 242


The request should hit servlet which will
authenticate the user. If the user is authenticated, the
response should display the username along with
date and time. If the user is not authenticated, the
response should display You are not authenticated.

Page 8 | 245
PROGRAM - 1

Aim: Program to input a character from user and determine its ASCII value

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Notepad, Command Promt
Program:

import java.util.Scanner;
public class CharASCII {
public static void main(String[] args) {
System.out.println("Enter a Character:");
Scanner sc = new Scanner(System.in);
char c = sc.next().charAt(0);
System.out.println("ASCII value " + c + " is " +
(int)c);
sc.close(); } }

Output:

Page 9 | 245
PROGRAM - 2

Aim: program to input marks in three subjects and print the average in three
subjects.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Notepad, Command Promt

Program:

import java.util.Scanner;
class marks
{
public static void main(String[] args)
{
Scanner Abc = new Scanner(System.in);
float avg;
System.out.println("Enter your name : ");
String name=Abc.nextLine();
System.out.println("Enter marks of 5 subjects : ");
int m1=Abc.nextInt();
int m2=Abc.nextInt();
int m3=Abc.nextInt();
avg=(float)(m1+m2+m3)/3;
System.out.println("The average is :- "+ avg);
}

Page 10 | 245
Output:

Page 11 | 245
PROGRAM - 3

Aim: program to print Java Buzzwords through command line arguments

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12

Program:

public class Commandline {

public static void main(String[] args) {


// TODO Auto-generated method stub
int count,i=0;
count=args.length;
System.out.println("Number of Arguments = "+count);
System.out.println("Java Buzzwords ");
for(i=0;i<count;i++)
{
System.out.println(args[i] + " ");
}
}

Page 12 | 245
Output:

Page 13 | 245
PROGRAM - 4

Aim: program to print the Floyd's triangle.


1

23

456

7 8 9 10

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
public class floyd {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n,num=1,c,d;
Scanner abc=new Scanner(System.in);
System.out.println("Enter the number of rows to insert in
Floyd's Triangle :");
n=abc.nextInt();
System.out.println("Floyd's Triangle :-");
for ( c=1;c<=n;c++ )
{
for(d=1;d<=c;d++)
{ System.out.print(num+" ");
num++; }
System.out.println();
} }
}

Page 14 | 245
Output:

Page 15 | 245
PROGRAM - 5

Aim: program to demonstrate Math class in java.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class Maths {

public static void main(String[] args) {


// TODO Auto-generated method stub
Scanner abc = new Scanner(System.in);
System.out.println("Enter value of x :");
double x=abc.nextDouble();
System.out.println("Enter value of y :");
double y=abc.nextDouble();
double a,b,c,d,e,f,g;
a=Math.pow(x, y);
b=Math.abs(x);
c=Math.abs(y);
d=Math.max(x, y);
e=Math.min(x, y);
f=Math.sqrt(x);
g=Math.sqrt(y);
System.out.println("The Value of x ^ y = "+a);
System.out.println("The Absolute Value of x = "+b);
System.out.println("The Absolute Value of y = "+c);
System.out.println("The MAX Value is = "+d);
System.out.println("The MIN Value is = "+e);
System.out.println("The Value of square root of x = "+f);
System.out.println("The Value of square root of y = "+g);
}
}

Page 16 | 245
Output:

Page 17 | 245
PROGRAM - 6

Aim: program that will read a real number from the keyboard and print the
following output in one line <Smallest integer not less than the number> <the
given number> <largest integer not greater than the number>

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class func1 {

public static void main(String[] args) {


// TODO Auto-generated method stub
Scanner abc = new Scanner(System.in);
System.out.println("Enter any number 1 : ");
double x = abc.nextDouble();
double ceiling,flooring;
ceiling=Math.ceil(x);
flooring=Math.floor(x);
System.out.print(" Ceil = "+ceiling+ " Number= "+x+"
Floor= "+flooring);
double result5;
result5=Math.sin(Math.toRadians(x));
System.out.println(" Sine of "+ x + " is "+result5);
}

Page 18 | 245
Output:

Page 19 | 245
PROGRAM - 7
Aim: program to determine maximum of a 1D array .

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class max {

public static void main(String[] args) {


// TODO Auto-generated method stub
Scanner sc= new Scanner(System.in);
System.out.println("Enter the size of Array :");
int x=sc.nextInt();
int arr1[]=new int[x];
System.out.println("Enter Array elements :");
for(int i=0; i<arr1.length; i++)
{
arr1[i]=sc.nextInt();
}
System.out.println("Array is :-");
for(int i=0; i<arr1.length;i++)
{
System.out.println(" "+arr1[i]);
}
System.out.println();
int max=arr1[0];
for (int j=1;j<arr1.length;j++)
{
if(max<arr1[j])
{ max=arr1[j]; }
}
System.out.println("MAX :"+ max);
}
}

Page 20 | 245
Output:

Page 21 | 245
PROGRAM - 8
Aim: program to input two matrices, display them and print the sum.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class Add_Matrix {

public static void main(String[] args) {


// TODO Auto-generated method stub
int p,q,m,n;
Scanner abc=new Scanner(System.in);
System.out.println("Enter the number of rows in First matrix
:");
p=abc.nextInt();
System.out.println("Enter the number of columns in First
matrix :");
q=abc.nextInt();
System.out.println("Enter the number of rows in Second
matrix :");
m=abc.nextInt();
System.out.println("Enter the number of columns in Second
matrix :");
n=abc.nextInt();
if(p==m && q==n)
{
int a[][]=new int[p][q];
int b[][]=new int[m][n];
int c[][]=new int[m][n];
System.out.println("Enter all the elements of first
matrix :" );
for (int i=0;i<p;i++)
{
for(int j=0;j<q;j++)
{

Page 22 | 245
a[i][j]=abc.nextInt();
}
}
System.out.println("Enter all the elements of Second
matrix :" );
for (int i=0;i<p;i++)
{
for(int j=0;j<q;j++)
{
b[i][j]=abc.nextInt();
}
}
System.out.println("First Matrix is :");
for(int i=0;i<p;i++)
{
for (int j=0;j<q;j++)
{
System.out.print(a[i][j]+" ");
}
System.out.println(" ");
}
System.out.println("Second Matrix is :");
for(int i=0;i<m;i++)
{
for (int j=0;j<n;j++)
{
System.out.print(b[i][j]+" ");
}
System.out.println(" ");
}
for(int i=0;i<p;i++)
{
for(int j=0;j<q;j++)
{

c[i][j]=a[i][j]+b[i][j];

}
}

Page 23 | 245
System.out.println("Matrix after Addition
:");
for (int i=0;i<p;i++)
{
for(int j=0;j<n;j++)
{
System.out.print(c[i][j]+" ");
}
System.out.println(" ");
}
}
else
{
System.out.println("Addition would not be
possible");
}
}

Page 24 | 245
Output:

Page 25 | 245
PROGRAM - 9
Aim: program to input two matrices, display them and print the multiplication
resultant matrix.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
public class Mul_Matrix
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Enter the rows of first
matrix:");
int rows = scan.nextInt();
System.out.println("Enter the columns of first
matrix:");
int columns = scan.nextInt();
System.out.println("Enter all elements of First
Matrix :");
int matrix1[][] = new int[rows][columns];

int i,j,k,l,a;
for(i=0;i<rows;i++)
{
for(j=0;j<columns;j++)
{
matrix1[i][j] = scan.nextInt();
}
}
System.out.println("Enter the rows of second
matrix:");
int rows1 = scan.nextInt();
System.out.println("Enter the columns of second
matrix:");
int columns1 = scan.nextInt();

Page 26 | 245
System.out.println("Enter all elements of Second
Matrix :");
int matrix2[][] = new int[rows1][columns1];
int matrix3[][] = new int[rows][columns1];
for(k=0;k<rows1;k++)
{
for(l=0;l<columns1;l++)
{
matrix2[k][l] = scan.nextInt();
}
}
if(columns==rows1)
{
for(i=0;i<rows;i++)
{
for(j=0;j<columns1;j++)
{
matrix3[i][j] = 0;
for(a=0;a<rows1;a++)
{
matrix3[i][j] +=
matrix1[i][a]*matrix2[a][j];
}
}
}
}
else
{
System.out.println("As the columns of first
matrix is not equal to rows of second matrix");
}
System.out.println("First Matrix:");
for(i=0;i<rows;i++)
{
for(j=0;j<columns;j++)
{
System.out.print(matrix1[i][j]+" ");
}
System.out.println();

Page 27 | 245
}
System.out.println("Second Matrix:");
for(k=0;k<rows;k++)
{
for(l=0;l<columns;l++)
{
System.out.print(matrix2[k][l]+" ");
}
System.out.println();
}
System.out.println("Multiplication of two matrix
metioned above is: ");
for(i=0;i<rows;i++) {
for(j=0;j<columns;j++) {
System.out.print(matrix3[i][j]+" ");
}
System.out.println();
} }
}

Output:

Page 28 | 245
PROGRAM - 10
Aim: program to calculate the income tax payable as per the below matrix:
Income Tax Payable
Upto Rs. 1,00,000/- Nil
From Rs. 1,00,001/- to Rs. 2,00,000/- 10% of excess over Rs. 1,00,000/-
From Rs. 2,00,001 to Rs. 3,00,000/- 20% of excess over Rs. 2,00,000/-
Above Rs. 3,00,000/- 30% of excess over Rs. 3,00,000/-

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
public class income {

public static void main(String[] args) {


// TODO Auto-generated method stub
double tax=0,it;
Scanner sc=new Scanner(System.in);
System.out.println("Enter Income :");
it= sc.nextDouble();
if(it<=10000)
{
tax=0;
}
else if(it<=200000)
{
tax=0.1*(it-100000);
}
else if(it<=300000)
{
tax=((0.2*(it-200000))+10000);
}
else if(it>300000)
{ tax=((0.3*(it-300000))+30000); }
System.out.println("Income tax : "+tax);
} }

Page 29 | 245
Output:

Page 30 | 245
PROGRAM - 11
Aim: program to develop calculator using switch case.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class calculator {

public static void main(String[] args) {


// TODO Auto-generated method stub
char opr;
Double num1,num2,result;
Scanner c=new Scanner(System.in);
System.out.println("Choose an operator :(+,-
,*,/)");
opr=c.next().charAt(0);
System.out.println("Enter first number :");
num1=c.nextDouble();
System.out.println("Enter Second number :");
num2=c.nextDouble();
switch(opr) {
case '+':
result=num1+num2;
System.out.println(num1+" + "+num2+" =
"+result);
break;
case '-':
result=num1-num2;
System.out.println(num1+" - "+num2+" =
"+result);
break;
case '*':
result=num1*num2;
System.out.println(num1+" * "+num2+" =
"+result);

Page 31 | 245
break;
case '/':
result=num1/num2;
System.out.println(num1+" / "+num2+" =
"+result);
break;
default:
System.out.println("Invalid Input !!");
break;
}
c.close();
}

Page 32 | 245
Output:

Page 33 | 245
PROGRAM - 12
Aim: program to demonstrate the static method.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class StaticmethodDemo {
static void mymethods() {
System.out.println("Static Method Called");
}
public static void main(String[] args)
{
System.out.println("Calling the static method");
mymethods();
}
}

Output:

Page 34 | 245
PROGRAM - 13

Aim: program to determine the sum of the following series


1+x+x^2/2!+x^3/3!+..........................+N terms

Where N is input by the user.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
public class Sumseries
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Enter the value of x:");
int x = scan.nextInt();
int num,i,j;
System.out.println("Enter the number of terms:");
int n = scan.nextInt();
double sum=0;
int fact;
for(i=0;i<n;i++)
{
fact=1;
for(j=i;j>=1;j--)
{
fact = fact*j;
}
sum = sum + (Math.pow(x,i))/(fact);
}
System.out.println("Sum of the series till "+n+"
is: "+sum);
}
}

Page 35 | 245
Output:

Page 36 | 245
PROGRAM - 14
Aim: program to determine the sum of 2D array using for-each loop.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
import java.io.*;

public class sum2darr


{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
int arr1[][] = new int[3][3];
int sum=0;
System.out.println("Enter the elements of the
Matrix:");
System.out.println("Enter the rows of first:");
int rows = scan.nextInt();
System.out.println("Enter the columns of
first:");
int columns = scan.nextInt();
System.out.println("Enter the elements of the
Matrix :");
for(int i=0;i<rows;i++){
for(int j=0;j<columns;j++){
arr1[i][j] = scan.nextInt(); } }
for(int elements[]:arr1) {
for(int items:elements) {
sum = sum+items;
}
}
System.out.println("The sum of the entered
elements of the array is:"+sum);
}
}

Page 37 | 245
Output:

Page 38 | 245
PROGRAM - 15
Aim: program to search an element in 1D array using for-each loop.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
public class Search_Element
{
public static void main(String[] args)
{
int n, x, flag = 0, i = 0;
Scanner s = new Scanner(System.in);
System.out.print("Enter no. of elements you want in
array:");
n = s.nextInt();
int a[] = new int[n];
System.out.println("Enter all the elements:");
for(i = 0; i < n; i++)
{
a[i] = s.nextInt();
}
System.out.print("Enter the element you want to find:");
x = s.nextInt();
for(i = 0; i < n; i++)
{
if(a[i] == x)
{
flag = 1;
break;
}
else
{
flag = 0;
}

Page 39 | 245
}
if(flag == 1)
{
System.out.println("Element found at
position:"+(i + 1));
}
else
{
System.out.println("Element not found");
}
}
}

Output:

Page 40 | 245
PROGRAM - 16
Aim: program to demonstrate the jagged arrays/ irregular arrays in java.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.io.*;

public class jaggedarrays

public static void main(String[] args)

Scanner scan = new Scanner(System.in);

int arr1[][] = new int[3][];

arr1[0] = new int[1];

arr1[1] = new int[2];

arr1[2] = new int[3];

System.out.println("Enter the elements of the matrix:");

System.out.println("Enter one element of the first row:");

arr1[0][0] = scan.nextInt();

System.out.println("Enter two element of the second row:");

for(int i=0;i<2;i++)

Page 41 | 245
arr1[1][i] = scan.nextInt();

System.out.println("Enter elements of the third row:");

for(int j=0;j<3;j++)

arr1[2][j] = scan.nextInt();

System.out.println("The entered elements are:");

System.out.println(arr1[0][0]);

for(int i=0;i<2;i++)

{ System.out.print(arr1[1][i]+" "); }

System.out.println();

for(int j=0;j<3;j++)

System.out.print(arr1[2][j]+" ");

Page 42 | 245
Output:

Page 43 | 245
PROGRAM - 17

Aim: program displaying the name and enrolment no of 3 students using the
concept of array of objects.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.io.*;

class Student

int roll;

String name;

int age;

Student()

roll = 052;

name = "User";

age = 18;

void input(int r,String n,int a)

Page 44 | 245
roll = r;

name = n;

age = a;

void display()

System.out.println("Details of the Student:");

System.out.println("Roll Number of the


Student:"+roll);

System.out.println("Name of the Student:"+name);

System.out.println("Age of the Student:"+age);

public class arrayofobjects

public static void main(String[] args)

Scanner scan = new Scanner(System.in);

Student s1[];

s1 = new Student[3];

int n1,n3,n4,n6,n9,n7;

String n2,n5,n8;

Page 45 | 245
s1[0] = new Student();

s1[1] = new Student();

s1[2] = new Student();

System.out.println("Enter the details of First Student:");


System.out.println("Enter the Roll Number of the Student:");

n1 = scan.nextInt();

System.out.println("Enter the Name of the Student:");

n2 = scan.next();

System.out.println("Enter the Age of the Student:");

n3 = scan.nextInt();

s1[0].input(n1,n2,n3);

System.out.println("Enter the details of Second Student:");


System.out.println("Enter the Roll Number of the Student:");

n4 = scan.nextInt();

System.out.println("Enter the Name of the Student:");

n5 = scan.next();

System.out.println("Enter the Age of the Student:");

n6 = scan.nextInt();

s1[1].input(n4,n5,n6);

System.out.println("Enter the details of Third Student:");


System.out.println("Enter the Roll Number of the Student:");

n7 = scan.nextInt();

System.out.println("Enter the Name of the Student:");

Page 46 | 245
n8 = scan.next();

System.out.println("Enter the Age of the Student:");

n9 = scan.nextInt();

s1[1].input(n7,n8,n9);

System.out.println("The details of the Students are:");

System.out.println();

for(int i=0;i<3;i++)

s1[i].display();

System.out.println();

Page 47 | 245
Output:

Page 48 | 245
PROGRAM - 18

Aim: program to create an ArrayList and perform the following functions:


a) Append new element at the end of list.

b) Add a new element at the specified index in the list

c) Remove all elements from the list

d) Determine if the list contains an element

e) Obtain element a given index

f) Obtain first and last index of an element

g) Remove an element form the list

h) Determine the number of elements in the list.

i) Replace the element at the given index.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.util.ArrayList;

public class ArraylistDemo

public static void main(String[] args)

Scanner scan = new Scanner(System.in);

Page 49 | 245
ArrayList<String> l1 = new ArrayList<String>();

l1.add("Banana");

l1.add("Apple");

l1.add("Orange");

l1.add("Peach");

System.out.println("a)Appending the element in


the last:");

l1.add(l1.size(),"Lasttext");

System.out.println("Elements in list:");

for(int i=0;i<l1.size();i++)

System.out.print(l1.get(i)+" ");

System.out.println();

System.out.println("b)Add a new element at the


specific index in the list:");

System.out.println("Enter the index at which


you want to place:");

int index = scan.nextInt();

System.out.println("Enter the item you want to


insert:");

String item = scan.next();

l1.add(index-1,item);

System.out.println("Elements in list:");

Page 50 | 245
for(int i=0;i<l1.size();i++)

System.out.print(l1.get(i)+" ");

System.out.println("c)Removing all elements


from the arraylist:");

l1.clear();

System.out.println("Elements in list:");

for(int i=0;i<l1.size();i++)

System.out.println(l1.get(i)+" ");

System.out.println("d)If list contains any


element:");

if(l1.size()==0)

System.out.print("NO");

else

System.out.print("YES");

l1.add("Apple");

Page 51 | 245
l1.add("Orange");

l1.add("Peach");

System.out.println("e)Obtain element at a given


index:");

System.out.println("Enter the index you want


element of it:");

int ind = scan.nextInt();

System.out.println("Element at
"+ind+l1.get(ind));

System.out.println("f)Enter the element you


want the index of:");

String n = scan.next();

System.out.println("First index of an
element:"+l1.indexOf(n));

System.out.println("Last index of an
element:"+l1.lastIndexOf(n));

System.out.println("g)Removing an element from


the list:");

l1.remove(1);

System.out.println("Elements in list:");

for(int j=0;j<l1.size();j++)

System.out.print(l1.get(j)+" ");

Page 52 | 245
System.out.println("h)Determine the number of
elements in the list:");

System.out.print(l1.size());

System.out.println("i)Replace the element at


given index:");

System.out.println("Enter the index at which


you want to replace:");

int in = scan.nextInt();

System.out.println("Enter the element you want


as new one to be placed:");

String na = scan.next();

l1.set(in,na);

System.out.println("Elements in list:");

for(int j=0;j<l1.size();j++)

System.out.print(l1.get(j)+" ");

Page 53 | 245
Output:

Page 54 | 245
PROGRAM - 19

Aim: Create a Multiplication quiz using the concept of ArrayList where two
numbers are randomlygenerated and the user is asked to determine the result of
multiplication. If the user answer it correct,print “You won” and exit. If the user
gives incorrect response, print “Wrong answer”. If the userrepeats the incorrect
answer, print “Incorrect! This is a repeated mistake”. The user should beprompted
to input the response until he answers the question correctly.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
import java.util.ArrayList;
public class quiz
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
ArrayList<Integer> list1 = new
ArrayList<Integer>();
int rand1 = (int)(Math.random() * 100);
int rand2 = (int)(Math.random() * 100);
int prod = rand1*rand2;
System.out.println("First selected
number:"+rand1);
System.out.println("Second selected
number:"+(rand2-10)+"n<random");
System.out.println("Enter the product
assumption:");
int userinput = scan.nextInt();
if(prod!=userinput)
{
System.out.println("Wrong answer");
}
while(prod!=userinput)

Page 55 | 245
{
for(int i=0;i<list1.size();i++)
{
if(userinput==list1.get(i))
{
System.out.println("Incorrect!
This is a repeated mistake");
}
else
{
list1.add(userinput);
}
}
System.out.println("Enter the product
assumption:");
userinput = scan.nextInt();
}
if(prod==userinput)
{
System.out.println("You Won");
}
}
}

Page 56 | 245
Output:

Page 57 | 245
PROGRAM - 20

Aim: Create a class Bank which have the following members:


I) Data members: Name of depositor b) Account Number c) Type of Account
d) Balance amount in account
II) Parameterized Constructor to initialize the values

III) Methods: a) To deposit an amount

b) To withdraw an amount after checking balance

c) To display the name of depositor, account number, type of


account and balance amount

Create another class BankDemo that will create the Bank class object and access the
methods in Bank

to deposit, withdraw and display.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
class Bank
{
Scanner scan = new Scanner(System.in);
String name;
int account_no;
String type;
double balance;
Bank(String n, int acc, String t, double b)
{
name = n;
account_no = acc;
type = t;
balance = b;

Page 58 | 245
}
void deposit(int amo)
{
balance = balance+amo;
}
void withdraw(int amt)
{
balance = balance-amt;
}
void display()
{
System.out.println("Name of the Customer:
"+name);
System.out.println("Account Number of Customer:
"+account_no);
System.out.println("Type of account of Customer:
"+type);
System.out.println("Balance Amount: "+balance);
}
void input()
{
System.out.println("Enter the name of Customer:
");
name = scan.next();
System.out.println("Enter the Account number:");
account_no = scan.nextInt();
System.out.println("Enter the type of account of
Customer: ");
type = scan.next();
System.out.println("Enter the Balance Amount:");
balance = scan.nextDouble();
}
}
public class BankDemo1
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);

Page 59 | 245
Bank Vijay = new
Bank("Sanjay",1050010293,"Saving",0);
int option,amount;
System.out.println("1. Deposit the amount");
System.out.println("2. Withdraw the amount");
System.out.println("3. Input the details");
System.out.println("4. Display the details");
System.out.println("Choose one option");
option = scan.nextInt();
while(option<5)
{
if(option==1)
{
System.out.println("Enter the amount
you want to deposit:");
amount = scan.nextInt();
Vijay.deposit(amount);
}
else if(option==2)
{
System.out.println("Enter the amount
you want to withdraw:");
amount = scan.nextInt();
Vijay.withdraw(amount);
}
else if(option==3)
{ Vijay.input(); }
else
{ Vijay.display(); }
System.out.println("1. Deposit the amount");
System.out.println("2. Withdraw the
amount");
System.out.println("3. Input the details");
System.out.println("4. Display the
details");
System.out.println("Choose one option");
option = scan.nextInt();
}
} }

Page 60 | 245
Output:

Page 61 | 245
PROGRAM - 21

Aim: Write a program to demonstrate the concept of Constructor chaining. The


scenario is:

Create the following class:

a) Electronics with method devicetype()

b) Television extends Electronics with method category()

c) Led extends Television with method display_tech()

Also use the Led object to call methods devicetype(), category() an display_tech()

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
package demo;
import java.util.Scanner;
class Electronics
{
String appliance;
Electronics()
{
System.out.println("Electronics Constructor");
appliance = "Display";
}
Electronics(String name)
{
System.out.println("Electronics Constructor
Paranetrised"); appliance = name;
}
Electronics(Electronics light)
{
System.out.println("Electronics Constructor
Copy");

Page 62 | 245
appliance = light.appliance;
}
void device_type()
{
System.out.println("Electronics");
System.out.println(appliance);
}
}
class Television extends Electronics
{
Television()
{
System.out.println("Television no
arguement constructor");
}
void category()
{
System.out.println("Category is
Television");
}
}

class LED extends Television


{
LED()
{
System.out.println("LED no arguement
constructor");
}
void displaytech()
{
System.out.println("Technology is LED");
} }

public class ConsChain


{ public static void main(String[] args)
{ LED obj = new LED();
}
}

Page 63 | 245
Output:

Page 64 | 245
PROGRAM - 22

Aim: program to demonstrate Constructor overloading in java.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

public class ConsOver {

int id;
String name;

ConsOver(){
System.out.println("this a default constructor");
}

ConsOver(int i, String n){


id = i;
name = n;
}

public static void main(String[] args) {


ConsOver s = new ConsOver();
System.out.println("\nDefault Constructor values: \n");
System.out.println("Student Id : "+s.id + "\nStudent Name :
"+s.name);

System.out.println("\nParameterized Constructor values:


\n");
ConsOver student = new ConsOver(18, "Vivek");
System.out.println("Student Id : "+student.id + "\nStudent
Name : "+student.name);
}
}

Page 65 | 245
Output:

sf

Page 66 | 245
PROGRAM - 23

Aim: program to demonstrate the concept of private constructors.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
import java.util.*;
class Chef
{
private Chef()
{
System.out.println("Dish is cooked and ready to
serve!");
}
static void Chefram()
{
Chef Ram = new Chef();
}
}

public class privateCons


{
public static void main(String[] args)
{
Chef.Chefram();
}
}

Page 67 | 245
Output:

Page 68 | 245
PROGRAM - 24

Aim: Write a program to demonstrate method overloading.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
class Person
{ int age;
String name;
String gender;
Person()
{
age = 18;
name = "Shubh";
gender = "male";
}
void input(int ag,String n)
{
age = ag;
name = n;
gender = "male";
}
void input(int ag1,String na, String g)
{
age = ag1;
name = na;
gender = g;
}
void display()
{
System.out.println("Age of the Person:"+age);
System.out.println("Name of the Person:"+name);
System.out.println("Gender of the
Person:"+gender);

Page 69 | 245
} }

public class methodover


{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
Person Shyam = new Person();
int a;
String n1;
String n2;
System.out.println("Enter the Name of the
Person:");
n1 = scan.next();
System.out.println("Enter the Age of the
Person:");
a = scan.nextInt();
System.out.println("Enter the Gender of the
Person:");
n2 = scan.next();
Shyam.input(a,n1,n2);
System.out.println("Enter the details of other
person:");
System.out.println("Enter the Name of the
Person:");
n1 = scan.next();
System.out.println("Enter the Age of the
Person:");
a = scan.nextInt();
Person Ram = new Person();
System.out.println("Entered details of first
person:");
Shyam.display();
System.out.println("Entered details of second
person:");
Ram.display();
} }

Page 70 | 245
Output:

Page 71 | 245
PROGRAM - 25

Aim: Write a program to demonstrate usage of final keyword as a constant, final


method and final class.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Notepad , Command Prompt
Program:

class Bike{

final void run(){

System.out.println("running");

class Honda extends Bike{

void run()

System.out.println("running safely with 100kmph");

public static void main(String args[]){

Honda honda= new Honda();

honda.run();

Page 72 | 245
Output:

Page 73 | 245
PROGRAM - 26

Aim: Write a program to demonstrate the concept of method overriding.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

class A{
void display(){
System.out.println("display() method of class
A.\n");
}
}
class B extends A{
void display(){
System.out.println("Method of B overrides method of
A.\n");
System.out.println("display() method of class
B.\n");
}
}
public class MethodOverride{
public static void main(String args[]){
B obj = new B();
obj.display();
}
}

Page 74 | 245
Output:

Page 75 | 245
PROGRAM - 27

Aim: An educational institution wishes to maintain a database of its employees.


The database is divided into a number of classes whose hierarchical relationships are
shown in Figure. The figure also shows the minimum information required for each
class. Specify all the classes and define methods to create the database and retrieve
individual information as and when required.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
abstract class staff
{
long code;
String name;
staff()
{
code = 304949235;
name = "Peon";
}
staff(int c, String n)
{
code = c;
name = n;
}
abstract void input();
abstract void display();
}
class teacher extends staff
{
Scanner scan = new Scanner(System.in);
String subject;
String publication;
teacher()
{
subject = "Maths";

Page 76 | 245
publication = "Goyal Brothers";
}
teacher(String sub, String pub)
{
subject = sub;
publication = pub;
}
teacher(teacher t)
{
subject = t.subject;
publication = t.publication;
}
void input()
{
System.out.println("Enter the code of teacher:");
code = scan.nextInt();
System.out.println("Enter the name of teacher:");
name = scan.next();
System.out.println("Enter the subject of
teacher:");
subject = scan.next();
System.out.println("Enter the publication of
teacher:");
publication = scan.next();

}
void display()
{
System.out.println("Code of teacher:"+code);
System.out.println("Name of teacher:"+name);
System.out.println("Subject of
teacher:"+subject);
System.out.println("Publication of
teacher:"+publication);
}
}
class officer extends staff
{
Scanner scan = new Scanner(System.in);

Page 77 | 245
String grade;
officer()
{
grade = "A";
}
officer(String grad)
{
grade = grad;
}
officer(officer office)
{
grade = office.grade;
}
void input()
{
System.out.println("Enter the code of officer:");
code = scan.nextInt();
System.out.println("Enter the name of officer:");
name = scan.next();
System.out.println("Enter the grade of
officer:");
grade = scan.next();
}
void display()
{
System.out.println("Code of officer:"+code);
System.out.println("Name of officer:"+name);
System.out.println("Grade of officer:"+grade);
}
}
class typist extends staff
{
int speed;
typist()
{
speed = 20;
}
typist(int speed)
{

Page 78 | 245
this.speed = speed;
}
typist(typist type)
{
speed = type.speed;
}
void input()
{
Scanner scan=new Scanner(System.in);
System.out.println("Enter the code of typist:");
code = scan.nextInt();
System.out.println("Enter the name of typist:");
name = scan.next();
System.out.println("Enter the typing speed of
typist:");
speed = scan.nextInt();
}
void display()
{
System.out.println("Code of typist:"+code);
System.out.println("Name of typist:"+name);
System.out.println("Typing Speed of the
typist:"+speed);
}
}
class regular extends typist
{

}
class casual extends typist
{
double daily_wage;
casual()
{
daily_wage = 200;
}
casual(double wage)
{
daily_wage = wage;

Page 79 | 245
}
casual(casual c)
{
daily_wage = c.daily_wage;
}
void input()
{
Scanner scan=new Scanner(System.in);
System.out.println("Enter the code of typist:");
code = scan.nextInt();
System.out.println("Enter the name of typist:");
name = scan.next();
System.out.println("Enter the typing speed of
typist:");
speed = scan.nextInt();
System.out.println("Enter the daily wage of
typist:");
daily_wage = scan.nextInt(); }
void display()
{
System.out.println("Code of typist:"+code);
System.out.println("Name of typist:"+name);
System.out.println("Typing Speed of the
typist:"+speed);
System.out.println("Daily Wage of
typist:"+daily_wage);
} }
public class inheritance
{
public static void main(String[] args)
{
regular shiv = new regular();
casual shankar = new casual();
teacher professor = new teacher();
officer colonel = new officer();
System.out.println("Teacher staff");
professor.input();
professor.display();
System.out.println("Officer staff");

Page 80 | 245
colonel.input();
colonel.display();
System.out.println("Regualar typist staff");
shiv.input();
shiv.display();
System.out.println("Casual typist staff");
shankar.input();
shankar.display(); } }

Output:

Page 81 | 245
PROGRAM - 28

Aim: Write a java program to illustrate the abstract class and abstract method and
using inheritance to child class and calling child class method overriding abstract
method.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
abstract class Figure
{
int d1,d2;
Figure()
{
d1=0;
d2=0;
}
Figure(int x, int y)
{
d1 = x;
d2 = y;
}
abstract void area();
}
class Triangle extends Figure
{
Triangle()
{
d1=0;
d2=0;
}
Triangle(int a, int b)
{
super(a,b);
}

Page 82 | 245
void area()
{
double area2;
area2 = 0.5*d1*d2;
System.out.println("Area of triangle: "+area2);
}
}
class Rectangle extends Figure
{
Rectangle()
{
d1=5;
d2=4;
}
Rectangle(int p, int q)
{
super(p,q);
}
void area()
{
double area3;
area3 = d1*d2;
System.out.println("Area of rectangle: "+area3);
}
}

public class AbstractClasses


{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
int shape1,shape2;
System.out.println("Enter the base length of
triangle:");
shape1 = scan.nextInt();
System.out.println("Enter the Altitude length of
triangle:");
shape2 = scan.nextInt();
Triangle scalene = new Triangle(shape1,shape2);

Page 83 | 245
scalene.area();
System.out.println("Enter the length of
rectangle:");
shape1 = scan.nextInt();
System.out.println("Enter the Breadth of
rectangle:");
shape2 = scan.nextInt();
Rectangle rect = new Rectangle(shape1,shape2);
rect.area();
}
}

Output:

Page 84 | 245
PROGRAM - 29

Aim: Write a java program to create a class Account with members as :


Name ---> Data type as String
Balance ---> Data type as float/double Initialize the members and display using
method show() The class should be defined in the package Bank. Create another
package and import the class Account in the package. Create object of class
Account and call the method show() to display the elements of the class Account.
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Notepad, Command Promt
Program:
Package Bank:
package Bank;
import java.util.*;
public class Account {
String Name;
double Balance;
public Account(){
Name="User";
Balance=1000;

}
public Account(String n,double b) {
Name=n;
Balance=b;
}
public Account(Account acc){
Name=acc.Name;
Balance=acc.Balance;
}
public void show() {
System.out.println("Name :"+Name);
System.out.println("Balance :"+Balance);
}
public void input(String t,double n) {
Name=t;
Balance=n; } }

Page 85 | 245
Package pnb:
package pnb;
import java.util.Scanner;
import Bank.Account;
public class Demo {
public static void main(String[] args) {
Scanner scan=new Scanner(System.in);
System.out.println("Enter your Name :");
String name=scan.nextLine();
System.out.println("Enter your Balance :");
double balance=scan.nextDouble();
Account Vansh=new Account(name,balance);
Vansh.show(); } }

Output:

Page 86 | 245
PROGRAM - 30

Aim: Write a java program to define an interface Constants


interface Constants
{
int MONDAY = 1;
int TUESDAY = 2;
int WEDNESDAY = 3;
int THURSDAY = 4;
int FRIDAY = 5;
int SATURDAY= 6;
void weekday( );
}
Create a class Weekday which Implement the interface Constants and define the
method void weekday( ) to print the weekday corresponding to integer entered by
the user.
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
interface Constants
{
int MONDAY=1;
int TUESDAY=2;
int WEDNESDAY=3;
int THURSDAY=4;
int FRIDAY=5;
int SATURDAY=6;
int SUNDAY=7;
}
class Weekday implements Constants
{
void weekday(int num)
{
switch(num)

Page 87 | 245
{
case MONDAY:
System.out.println("MONDAY");
break;
case TUESDAY:
System.out.println("TUESDAY");
break;
case WEDNESDAY:
System.out.println("WEDNESDAY");
break;
case THURSDAY:
System.out.println("THURSDAY");
break;
case FRIDAY:
System.out.println("FRIDAY");
break;
case SATURDAY:
System.out.println("SATURDAY");
break;
case SUNDAY:
System.out.println("SUNDAY");
break;
default:
System.out.println("INVALID INPUT !!");
break;
} } }

public class interfaceDemo


{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
Weekday days=new Weekday();
System.out.println("Enter number from 1-7 : ");
int day=sc.nextInt();
days.weekday(day);
} }

Page 88 | 245
Output:

Page 89 | 245
PROGRAM - 31

Aim: Use the concept of Nested Interface to determine if the given number is
negative or not.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package demo1;
import java.util.Scanner;
interface number
{
interface check
{
public void negative(int num);
}
}
class checkneg implements number.check
{
public void negative(int num)
{
if(num<0)
{
System.out.println("It is a negative number");
}
else
{
System.out.println("It is not a negative
number");
}
}
}
public class nestedemo
{
public static void main(String[] args)
{

Page 90 | 245
Scanner abc=new Scanner(System.in);
checkneg numbers = new checkneg();
System.out.println("Enter any number :");
int l = abc.nextInt();
numbers.negative(l);
}
}

Output:

Page 91 | 245
PROGRAM - 32

Aim: Write a java program to implement the concept of multiple inheritance in


Java.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

interface HostelBehaviour
{
void hostelcharges(int noofbeds,float costperbed);
}
interface LibraryBehaviour
{
void fine(int noofdays,float costperbook);
}
class Students1 implements HostelBehaviour,LibraryBehaviour
{
String name;
float totcharges;
float hostelcharges;
float bookfine;
final float college_fees= 40000.0f;
public void hostelcharges(int noofbeds,float costperbed)
{
if(noofbeds>4)
{
System.out.println("Hostel Unavailable");
}
else
{
hostelcharges=noofbeds*costperbed;
System.out.println("Hostel Charges
:"+hostelcharges);

Page 92 | 245
} }
public void fine(int noofdays,float costperbook)
{
bookfine=noofdays*costperbook;
System.out.println("Book Fine :"+bookfine);
}
public void Detail(String name,int noofbeds,float
costperbed,int noofdays,float costperbook)
{
System.out.println("Name of Student :"+name);
hostelcharges(noofbeds,costperbed);
fine(noofdays,costperbook);
totcharges=hostelcharges+bookfine+college_fees;
System.out.println("Total Charges :"+totcharges);
} }
public class multipleinherit
{
public static void main(String[]args)
{
Scanner c=new Scanner(System.in);
System.out.println("Enter the name of Student :");
String name=c.nextLine();
System.out.println("Enter the number of Beds :");
int noofbeds=c.nextInt();
System.out.println("Enter the Cost Per Bed :");
float costperbed=c.nextFloat();
System.out.println("Enter the Cost Per Book :");
float costperbook=c.nextFloat();
System.out.println("Enter the number of Days :");
int noofdays=c.nextInt();
System.out.println("____________________________________
____");
Students1 s1=new Students1();
s1.Detail(name, noofbeds, costperbed, noofdays,
costperbook);
} }

Page 93 | 245
Output:

Page 94 | 245
PROGRAM - 33

Aim: Write the program to implement the concept of default methods in interfaces.
Scenario: In the above program, add default implementation of hostelcharges( ) and
fine( ). By default the hostelcharges = 400 and fine = 0

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12

Program:
import java.util.Scanner;
interface Hostel_Behaviour
{
default void hostelCharges(float hc)
{
System.out.println("Hostel Charges :"+hc+"Rs.");
}
}
interface Library_Behaviour
{
default void fine(float f)
{
System.out.println("Library Fine :"+f+"Rs.");
}
}
class St implements Hostel_Behaviour,Library_Behaviour {
float totalcharges;
float hostel_charges;
float bookfine;
final float college_fees;
St(float hc,float fine) {
hostel_charges=hc;
bookfine=fine;
college_fees=40000.0f;
totalcharges=hostel_charges+bookfine+college_fees;
}

Page 95 | 245
public void Detail(String name) {
System.out.println("Name of Student :"+name);
hostelCharges(hostel_charges);
fine(bookfine);
System.out.println("Total Charges :"+totalcharges);
}
}
public class Defaultinherit{
public static void main(String[]args) {
final float hc=400f;
final float fine=0f;
St s1=new St(hc,fine);
s1.Detail("Suresh Makol");
}
}

Output:

Page 96 | 245
PROGRAM - 34

Aim: program to demonstrate the concept of unchecked exception.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.util.Scanner;
public class uncheckedExcept {
public static void main(String[] args) {
try {
int[] arr = {1,2,3,4};
Scanner sc = new Scanner(System.in);
System.out.println("Enter index number of array
for accessing the element"); int index =
sc.nextInt();
System.out.println("Element : " + arr[index]); }
catch(ArithmeticException e) {
System.out.println(e);
} } }

Output:

Page 97 | 245
PROGRAM - 35

Aim: program to read a file using FileReader class and handle the checked
exceptions FileNotFoundException and IOException. Close the FileReader object
in finally block.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.io.*;
import java.io.FileReader;
import java.util.Scanner;

public class FileReaderDemo {


public static void main(String[] args) {
FileReader re = null;
try {
re = new FileReader("F:\\JAVA\\Suresh's file\\text1.txt");
int i;
while((i=re.read())!=-1){
System.out.print((char)i); } }
catch(FileNotFoundException fof){
System.err.format("Exception:"+fof); }
catch(IOException io){

System.err.format("Exception:"+io.getMessage()); }
finally {
try {
re.close();}
catch(IOException e) {
System.out.println("Closing of file throw IO Exception.");
} }
} }

Page 98 | 245
Output:

Page 99 | 245
PROGRAM - 36

Aim: program to implement the User Defined Exception concept. The exception is
thrown when the age of the person is less than 18.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.io.*;

class VoterException extends Exception

int age;

VoterException(int r)

age = r;

public String toString()

return("Voter is not Enrolled");

} }

Page 100 | 245


public class Voting

public static void main(String[] args)

Scanner scan = new Scanner(System.in);

try

System.out.println("Enter your age:");

int ag = scan.nextInt();

if(ag>18)

System.out.println("Voter is Enrolled");

else

throw new VoterException(ag);

} }

catch(VoterException person)

System.out.println("Exception:"+person);

} } }

Page 101 | 245


Output:

Page 102 | 245


PROGRAM - 37

Aim: program to demonstrate the concept of Chained Exception.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
import java.io.*;

class FilerException extends Exception


{
void show()
{
ArithmeticException Exc1 = new
ArithmeticException();
IOException output = new IOException();
Exc1.initCause(output);
throw Exc1;
}
}

class ChainedException1{
public static void main(String[] args) {
try {

Page 103 | 245


FilerException just = new FilerException();
just.show();
}
catch(ArithmeticException arith) {
System.out.println("Exception:"+arith);
System.out.println("Cause
Exception:"+arith.getCause());
}
}
}

Output:

Page 104 | 245


PROGRAM - 38

Aim: Use MultiCatch to handle FileNotFoundException and ArithmeticException


while reading the file.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;
import java.io.FileReader;
import java.io.*;

public class MulticatchDemo


{
public static void main(String[] args)
{
FileReader re1 = null;
try
{
int r;
re1 = new FileReader("F:\\JAVA\\Suresh's
file\\text1.txt");
while((r=re1.read())!=-1)
{
System.out.print((char)r);
}

Page 105 | 245


System.out.println();
}
catch(FileNotFoundException|ArithmeticException e)
{
System.out.println(e);
}
catch(IOException ioe)
{
System.out.println(ioe.getMessage());
}
finally
{
try{
re1.close();}
catch(IOException e1)
{
System.out.print("Closing the file
throwing exception");
}
}
}
}

Page 106 | 245


Output:

Page 107 | 245


PROGRAM - 39

Aim: program to implement the concept of creating a thread using the Thread class
and inheriting it.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
package java1;
class MyThread extends Thread{
public void run()
{
System.out.println("Current Thread name :
"+Thread.currentThread().getName());
System.out.println("run() method called");
}
}
public class ThreadDemo{
public ThreadDemo() {
}
public static void main(String[] args) {
System.out.println("Current thread
name:"+Thread.currentThread().getName());
MyThread t = new MyThread();
//t.start();
t.run();
}
}

Page 108 | 245


Output:

Page 109 | 245


PROGRAM - 40

Aim: program to implement the concept of creating a thread using the runnable
interface and implementing it.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package java1;

class MyThreadRunnable implements Runnable{


public void run()
{
System.out.println("Current Thread
name"+Thread.currentThread().getName());
System.out.println("run() method called");
}
}
public class ThreadsDemoRunnable{
public static void main(String[] args)
{
MyThreadRunnable m=new MyThreadRunnable();
Thread t=new Thread(m);
System.out.println("Current thread name
:"+Thread.currentThread().getName());
t.start();
}
public ThreadsDemoRunnable() {

}
}

Page 110 | 245


Output:

Page 111 | 245


PROGRAM - 41

Aim: multithreaded program in Java with three threads :


1. Thread1 should display character 'a' , n1 no of times. The character and
frequency(n1) is input
by the user.
2. Thread2 should display character 'b' , n2 no of times. The character and
frequency(n2) is input
by the user.
3. Thread3 should display square of numbers upto n3. n3 is input by the user
Implement multithreading using:
a) Runnable interface or extending Thread class.
b) concept of Java Executor Framework, newFixedThreadPool(int)
c) concept of Java Executor Framework, newCachedThreadPool().
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:

Through newCachedThreadPool():

import java.util.Scanner;

import java.util.concurrent.*;

class Mythread extends Thread

char wo;

int n;

Mythread(char word, int num)

wo = word;

Page 112 | 245


n = num;

public void run()

for(int i=0;i<n;i++)

System.out.print(" "+wo);

class Mythread2 extends Thread

char wo1;

int n2;

Mythread2(char word1, int num1)

wo1 = word1;

n2 = num1;

public void run()

Page 113 | 245


{

for(int i=0;i<n2;i++)

System.out.print(" "+wo1);

class Mythread1 extends Thread

int n1;

int power;

Mythread1(int num1,int p1)

n1 = num1;

power = p1;

public void run()

System.out.println();

for(int i=1;i<=n1;i++)

Page 114 | 245


{

System.out.println(" "+Math.pow(i,power));

public class multithreadedDemo {

public static void main(String[] args) {

Scanner scan = new Scanner(System.in);

System.out.println("Enter any character:");

char letter = scan.next().charAt(0);

System.out.println("Enter how many times to print the


character:");

int number = scan.nextInt();

System.out.println("Enter any number:");

int number1 = scan.nextInt();

System.out.println("Enter the power:");

int p = scan.nextInt();

System.out.println("Enter any character:");

char letter1 = scan.next().charAt(0);

System.out.println("Enter how many times to print the


character:");

Page 115 | 245


int number2 = scan.nextInt();

ExecutorService processing =
Executors.newCachedThreadPool();

processing.execute(new Thread(new Mythread(letter,number)));


processing.execute(new Thread(new
Mythread1(number1,p)));processing.execute(new Thread(new
Mythread2(letter1,number1)));

processing.shutdown();

Output:

Page 116 | 245


Through newFixedThreadPool(int):
import java.util.Scanner;
import java.util.concurrent.*;
class Mythread extends Thread
{
char wo;
int n;
Mythread(char word, int num)
{
wo = word;
n = num;
}
public void run()
{
for(int i=0;i<n;i++)
{
System.out.print(" "+wo);
}
}
}

class Mythread2 extends Thread


{
char wo1;
int n2;
Mythread2(char word1, int num1)
{
wo1 = word1;
n2 = num1;
}
public void run()
{
for(int i=0;i<n2;i++)
{
System.out.print(" "+wo1);
}
}
}

Page 117 | 245


class Mythread1 extends Thread
{
int n1;
int power;
Mythread1(int num1,int p1)
{
n1 = num1;
power = p1;
}
public void run()
{
System.out.println();
for(int i=1;i<=n1;i++)
{
System.out.println(" "+Math.pow(i,power));
}
}
}

public class a {
public static void main(String[] args) {

Scanner scan = new Scanner(System.in);


System.out.println("Enter any character:");
char letter = scan.next().charAt(0);
System.out.println("Enter how many times to print the
character:");
int number = scan.nextInt();
System.out.println("Enter any number:");
int number1 = scan.nextInt();
System.out.println("Enter the power:");
int p = scan.nextInt();
System.out.println("Enter any character:");
char letter1 = scan.next().charAt(0);
System.out.println("Enter how many times to print the
character:");
int number2 = scan.nextInt();

Page 118 | 245


ExecutorService processing =
Executors.newFixedThreadPool(3);
processing.execute(new Thread(new
Mythread(letter,number)));
processing.execute(new Thread(new Mythread1(number1,p)));
processing.execute(new Thread(new
Mythread2(letter1,number2)));
processing.shutdown();

}
}

Output:

Page 119 | 245


PROGRAM - 42

Aim: program to implement the concept of daemon thread.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
package thread1;

import java.util.*;
import java.io.*;

class myThread extends Thread


{
public void run()
{
System.out.println("Thread is created");
System.out.println("Thread Name
is:"+Thread.currentThread().getName());
System.out.println("Thread daemon type
is:"+Thread.currentThread().isDaemon());
} }

public class DaemonThread {


public static void main(String[] args) {
myThread process1 = new myThread();
process1.setDaemon(true);
process1.start();
System.out.println("Thread Name
is:"+Thread.currentThread().getName());
System.out.println("Thread daemon type
is:"+Thread.currentThread().isDaemon());
}
}

Page 120 | 245


Output:

Page 121 | 245


PROGRAM - 43

Aim: Write a multithreaded program in which the main thread prints the number
between 1 to 30. Create a child thread that prints squares of number from 1 to 30.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

class child implements Runnable


{
public void run()
{
for(int l=1;l<=30;l++)
{
System.out.println(Math.pow(l, 2));
}
}
}
public class Question1 {

public static void main(String[] args) {


child obj=new child();
Thread thread1=new Thread(obj);
for(int i=1;i<=30;i++)
{
System.out.println(i);
if(i==15)
{
thread1.setPriority(10);
Thread.currentThread().setPriority(3);

if(thread1.getPriority()>=Thread.currentThread().getPrio
rity())
{

Page 122 | 245


// thread1.sleep(100);
thread1.start();
thread1.isAlive();
try {
thread1.join();
}
catch(InterruptedException e)
{
System.out.println("Exception"+e);
}
}
if(Thread.currentThread().isAlive())
{
continue;
}
}
}
}

Page 123 | 245


Output:

Page 124 | 245


PROGRAM - 44

Aim: program to demonstrate yield method in multithreading.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

public class Question2 {

public static void main(String[] args) {


class mychild implements Runnable
{
public void run()
{

System.out.println(Thread.currentThread().getName());
}
}
class mychild2 implements Runnable
{
public void run()
{

System.out.println(Thread.currentThread().getName());
}
}
mychild obj1=new mychild();
Thread ch1=new Thread(obj1);
mychild obj2=new mychild();
Thread ch2=new Thread(obj2);
ch1.start();
Thread.yield();
ch2.start();
}

Page 125 | 245


}

Output:

Page 126 | 245


PROGRAM - 45

Aim: Write a program with three threads adding one rupee each to the balance.
Use the concept of thread synchronization such that each thread shows the correct
balance.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package thread1;

class AddRupee implements Runnable


{
double balance = 0;
double addrupee()
{
balance = balance + 1;
return balance;
}
public void run()
{
double result;
result = addrupee();

System.out.println(Thread.currentThread().getName()+":"+resu
lt);
}
}

public class Question3{


public static void main(String[] args){
AddRupee obj = new AddRupee();

Page 127 | 245


Thread thread1 = new Thread(obj);
Thread thread2 = new Thread(obj);
Thread thread3 = new Thread(obj);
thread1.start();
thread2.start();
thread3.start();
try {
thread1.join();
thread2.join();
thread3.join();
}
catch(InterruptedException e) {

System.out.println("Exception:"+e.getMessage());
}
}
}

Output:

Page 128 | 245


PROGRAM - 46

Aim: program to suspend and resume a thread. Create two custom methods for the
same.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.*;

import java.io.*;

class mythread implements Runnable

String msg;

boolean flag;

mythread(String text)

msg = text;

public void run()

for(int i=1;i<10;i++)

Page 129 | 245


{

System.out.println(msg+" "+i);

synchronized(this)

while(flag)

try

wait();

catch(InterruptedException e)

System.out.println("Exception:"+e.getMessage()); }

synchronized void suspendthread()

flag = true;

Page 130 | 245


synchronized void resumethread()

flag = false;

notify();

} }

public class SuspendResume1

{ public static void main(String[] args) {

mythread t = new mythread("First");

mythread t1 = new mythread("Second");

Thread thread1 = new Thread(t);

Thread thread2 = new Thread(t1);

thread1.start();

thread2.start();

t.suspendthread();

try

Thread.sleep(11000);

catch(InterruptedException e) {

System.out.println("Exception:"+e.getMessage()); }

t.resumethread();

Page 131 | 245


} }

Output:

Page 132 | 245


PROGRAM - 47

Aim: Write a program to solve the producer consumer problem. Consumer should
wait till producer produce it and producer shall wait till consumer consumes.
Producer should produce the next item only when consumer consumes it.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.*;

import java.io.*;

class Q

int n;

boolean produce = false;

public synchronized void get()

while(!produce)

try

{ wait();}

catch(Exception e)

Page 133 | 245


{ System.out.println(e);}

System.out.println("Got: "+n);

produce = false;

notify();

public synchronized void put(int n)

while(produce)

try

{ wait();}

catch(Exception e){System.out.println(e);} }

this.n = n;

System.out.println("Put: "+n);

produce = true;

notify();

class Producer implements Runnable

Page 134 | 245


Q q;

String msg;

Producer(Q item, String text)

q = item;

msg = text;

public void run()

int i = 0;

while(true)

q.put(i++);

class Consumer implements Runnable {

Q q;

String msg;

Consumer(Q item, String text) {

q = item;

msg = text;

Page 135 | 245


public void run()

while(true)

q.get();

public class InterthreadComm {

public static void main(String[] args) {

Q obj = new Q();

Thread t = new Thread(new Producer(obj,"Producer")); Thread


t2 = new Thread(new Consumer(obj,"Consumer")); t.start();

t2.start();

Page 136 | 245


Output:

Page 137 | 245


PROGRAM - 48

Aim: Write a program to create deadlock condition.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.*;

import java.io.*;

class Thread1

public void run()

synchronized void mymethodA(Thread2 th)

System.out.println(Thread.currentThread().getName());

System.out.println("Calling the Second thread


caller()");

th.caller();

synchronized void caller()

Page 138 | 245


{

System.out.println("Inside Caller Thread1");

class Thread2

public void run()

synchronized void mymethodB(Thread1 th1)

System.out.println(Thread.currentThread().getName());

System.out.println("Calling the First thread


caller()");

th1.caller();

synchronized void caller()

System.out.println("Inside Caller Thread2");

Page 139 | 245


public class Deadlock implements Runnable

Thread1 t = new Thread1();

Thread2 t1 = new Thread2();

public void run()

t1.mymethodB(t);

public void Deadlockstart()

t.mymethodA(t1);

System.out.println("Main Thread");

public static void main(String[] args)

Deadlock l = new Deadlock();

Thread important = new Thread(l,"Main Thread");

important.start();

l.Deadlockstart();

Page 140 | 245


Output:

Page 141 | 245


PROGRAM - 49

Aim: Write a program using String Class to:


a) Input your name and friend’s name.
b) Trim the whitespaces if any using trim() in both the strings.
c) Determine length of your name and friend’s name.
d) Concatenate the strings together
a) Using +
b) Using concat() method of String class.
c) Use String class join method, with delimiter as ‘#’
d) Determine whether your friend’s name come before you lexicographically
(dictionary order) – Use
compareTo() method
e) Use indexOf(), lastIndexOf() to determine the first index and last index
respectively of character ‘a’
in your name. Note ‘a’ may or may not be present in your name.
f) Obtain substring starting from index 1 in your friend’s name.
g) Obtain substring starting from index 1 upto second last character in your
friend’s name.
h) Create another string containing all characters in uppercase in your name.
i) Compare your name and string in g) using equals()
j) Compare your name and string in g) using equalsIgnoreCase()
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:
a) Input your name and friend’s name.
b) Trim the whitespaces if any using trim() in both the strings.
c) Determine length of your name and friend’s name.
d) Concatenate the strings together
i) Using +
ii) Using concat() method of String class.
iii) Use String class join method, with delimiter as ‘#’

Page 142 | 245


import java.util.Scanner;
public class Question1b
{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
System.out.println("Length of the Strings:");
System.out.println(str1.length());
System.out.println(str2.length());
str3 = str2 + str1;
System.out.println("Concatenation with'+':");
System.out.println(str3);
str3 = str1.concat(str2);
System.out.println("Concatenated String:"+str3);
str3 = String.join("#",str1,str2);
System.out.println("Joines strings with
delimiter:"+str3);
}
}

Page 143 | 245


Output:

Page 144 | 245


d) Determine whether your friend’s name come before you
lexicographically (dictionary order) – Use compareTo() method.

import java.util.Scanner;

public class Question1f


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
int n = str1.compareTo(str2);
if (n > 0) {
System.out.println("Friend name will come after
your name");
}
else {
System.out.println("Friend name will come before
your name");
}
}
}

Page 145 | 245


Output:

Page 146 | 245


e) Use indexOf(), lastIndexOf() to determine the first index and last
index respectively of character ‘a’ in your name. Note ‘a’ may or
may not be present in your name.

import java.util.Scanner;

public class Questionindex


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
System.out.println("First index of 'a' in your
name:"+str1.indexOf("a"));
System.out.println("Last index of 'a' in your
name:"+str1.lastIndexOf("a", 6));
}
}

Page 147 | 245


Output:

Page 148 | 245


f) Obtain substring starting from index 1 in your friend’s name.

import java.util.Scanner;

public class Question1g


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
System.out.println("Substrings from friend's name");
System.out.println(str2.substring(1));
}
}

Page 149 | 245


Output:

Page 150 | 245


g) Obtain substring starting from index 1 upto second last character
in your friend’s name.

import java.util.Scanner;

public class Question1h


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
System.out.println("Substrings from friend's name");
System.out.println(str2.substring(1, str2.length() - 2));
}
}

Page 151 | 245


Output:

Page 152 | 245


h) Create another string containing all characters in uppercase in
your name.

import java.util.Scanner;

public class Question1k


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
System.out.println("Substrings from friend's name");
System.out.println("To Uppercase of your name:" +
str1.toUpperCase());
}
}

Page 153 | 245


Output:

Page 154 | 245


i) Compare your name and string in g) using equals().

import java.util.Scanner;

public class Question1i


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
if(str2.substring(1, str2.length() - 2).equals(str1))
{
System.out.println("Both the Strings are same
and their cases also.");
}
else
{
System.out.println("Neither Strings are same
nor cases.");
}
}
}

Page 155 | 245


Output:

Page 156 | 245


j) Compare your name and string in g) using equalsIgnoreCase().

import java.util.Scanner;

public class Question1j


{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
String str3 = new String();
String str4 = new String();
String str5 = new String();
Scanner scan = new Scanner(System.in);
System.out.println("Enter your name:");
str1 = scan.nextLine();
System.out.println("Enter your friend's Name:");
str2 = scan.nextLine();
if (str1.equalsIgnoreCase(str1.toUpperCase())) {
System.out.println("Strings are exact same");
}
else {
System.out.println("Strings are different");
}
}
}

Page 157 | 245


Output:

Page 158 | 245


PROGRAM - 50

Aim: Write a program to split the System Date obtained using LocalDate class
defined in java.time on delimiter “-” and display the date, month and year.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.time.LocalDate;
public class datedivision
{
public static void main(String[] args) {
LocalDate date = LocalDate.now();
String strf = date.toString();
String[] arr2 = strf.split("-");
System.out.println("Year:" + arr2[0]);
System.out.println("Month:" + arr2[1]);
System.out.println("Day:" + arr2[2]);
}
}

Page 159 | 245


Output:

Page 160 | 245


PROGRAM - 51

Aim: Check the following pattern in a string. If the pattern is found, the method
should return 'Pattern Matched' else 'The pattern don't exists. ''The fourth character
from the end is an alphabet, third last character of the string should be a 1. The last
two characters can be any digit between 0 to 9.'

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.*;

import java.io.*;

public class patternstrings {

public static void main(String[] args) {

Scanner scan = new Scanner(System.in);

String str1 = new String();

System.out.println("Enter any string:");

str1 = scan.nextLine();

if(str1.matches("^.*[a-z|A-Z]1[0-9][0-9]$"))

System.out.println("Pattern exists in string");

else {

System.out.println("No pattern exists in the String");

} } }

Page 161 | 245


Output:

Page 162 | 245


PROGRAM - 52

Aim: Create a StringBuffer object with buffer size as 16.


a) Append a string to the object.
b) Increase the capacity of the object to 40.
c) Obtain the length of the StringBuffer.
d) Set the length to 1 and print the output.
e) Append another string to the object.
f) Reverse the string contained in object.
g) Set the character at index 0 as 'A'
h) insert a String "Java" at the index 1.
i) Delete the character at index 2.
j) Delete the string with start index as 1 to endindex as 4.
k) replace the string starting at index 0 upto index 3 with 'Hiii'
l) Obtain the first index of "i" and the last index
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:

import java.io.*;

import java.util.Scanner;

public class BufferOne

public static void main(String[] args)

String s1 = new String("Last String");

StringBuffer str1 = new StringBuffer("This is the


first String");

Page 163 | 245


str1.append(s1);

System.out.print("a)");

System.out.println("New String:"+str1);

System.out.print("b)");

str1.ensureCapacity(40);

System.out.println("New
Capacity:"+str1.capacity());

System.out.print("c)");

System.out.println("Length of String
Buffer:"+str1.length());

System.out.print("d)");

str1.setLength(1);

System.out.println("New Length with 1 the string


is:"+str1);

String s2 = new String(" Apricot");

System.out.print("e)");

str1.append(s2);

System.out.println("New More String:"+str1);

System.out.print("f)");

str1.reverse();

System.out.println("Reversed String:"+str1);

System.out.print("g)");

str1.setCharAt(0,'A');

Page 164 | 245


System.out.println("Changed String after setting
character a:"+str1);

System.out.print("h)");

str1.insert(1,"Java");

System.out.println("New String Buffer after


insertion:"+str1);

System.out.print("i)");

str1.deleteCharAt(2);

System.out.println("New String After


Deletion:"+str1);

System.out.print("j)");

str1.delete(1,4);

System.out.println("New String after deletion


from 1 index to 4 index:"+str1);

System.out.print("k)");

str1.replace(0,3,"Hiii");

System.out.println("New String after


replacement:"+str1);

System.out.print("l)");

System.out.println("First index of i in
buffer:"+str1.indexOf("i",0));

System.out.println("Last index of i in
buffer:"+str1.lastIndexOf("i"));

} }

Page 165 | 245


Output:

Page 166 | 245


PROGRAM - 53

Aim: Write a program using BufferedReader to read your name, rollno, marks in
three subjects and section. Display the
name, rollno, section and percentage.
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:

import java.io.BufferedReader;

import java.util.Scanner;

import java.io.*;

import java.lang.Float;

public class BufferedReaderDemo

public static void main(String[] args)

try

BufferedReader br = new BufferedReader(new


InputStreamReader(System.in));

String name;

int rollno;

char section;

Page 167 | 245


double marks1;

double marks2;

double marks3;

double percentage;

System.out.println("Enter your name:");

name = br.readLine();

System.out.println("Enter your Roll Number:");

rollno = Integer.parseInt(br.readLine());

System.out.println("Enter the marks in First Subject:");

marks1 = Float.parseFloat(br.readLine());

System.out.println("Enter the marks in Second Subject:");

marks2 = Float.parseFloat(br.readLine());

System.out.println("Enter the marks in Third Subject:");

marks3 = Float.parseFloat(br.readLine());

percentage = (marks1+marks2+marks3)/3.0f;

System.out.println("Enter your section:");

section = (char)br.read();

System.out.println("Details are as follows:");

System.out.println("Entered Name:"+ name);

System.out.println("Entered Section:"+section);

Page 168 | 245


System.out.println("Entered Roll Number:"+rollno);

System.out.println("Total Percentage obtained:"+percentage);

br.read();

br.close();

catch(IOException e)

System.out.println(e.getMessage());

Page 169 | 245


Output:

Page 170 | 245


PROGRAM - 54

Aim: Write a program to read a file using BufferedReader. Use try with resources
statement.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.io.BufferedReader;

import java.io.FileReader;

import java.util.Scanner;

import java.io.*;

import java.lang.Float;

public class BufferedReaderFileDemo

{ public static void main(String[] args) {

try(BufferedReader br = new BufferedReader(new


FileReader("F:\\JAVA\\Suresh's file\\text1.txt")))

{ String line;

while((line = br.readLine())!=null)

{ System.out.println(line); } }

catch(IOException l) {

System.err.format("Exception:"+l); }
} }

Page 171 | 245


Output:

Page 172 | 245


PROGRAM - 55

Aim: Implement mark() and reset() methods on BufferedInputStream reading a


file.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.io.BufferedInputStream;

import java.io.FileInputStream;

import java.io.*;

import java.util.*;

public class BufferedInputStreamDemo

public static void main(String[] args)

try(BufferedInputStream bfs = new


BufferedInputStream(new FileInputStream("F:\\JAVA\\Suresh's
file\\text1.txt")))

System.out.print((char)bfs.read());

bfs.mark(10);

Page 173 | 245


System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

bfs.reset();

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

System.out.print((char)bfs.read());

catch(IOException e)

System.out.println(e.getMessage());

Page 174 | 245


Output:

Page 175 | 245


PROGRAM - 56

Aim: Write a program implement unread() method of PushbackReader.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.io.*;

import java.io.PushbackReader;

import java.io.CharArrayReader;

import java.util.Scanner;

public class PushbackReaderDemo

public static void main(String[] args)

String str = "Good Evening";

char charbuf[] = new char[str.length()];

str.getChars(0,str.length(), charbuf , 0);

CharArrayReader ln = new CharArrayReader(charbuf);

int a;

try(PushbackReader fl = new PushbackReader(ln))

int c = 3;

Page 176 | 245


while((a=fl.read()) != -1 && (c>0))

System.out.println((char)a);

fl.unread(a);

c--;

catch(IOException l)

System.err.format("Exception:"+l);

Page 177 | 245


Output:

Page 178 | 245


PROGRAM - 57

Aim: Write a program to copy the contents of one file to another in java. Use
FileReader and FileWriter stream classes.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.util.Scanner;

import java.util.*;

import java.io.FileReader;

import java.io.FileWriter;

import java.io.*;

public class readandwriteDemo

public static void main(String[] args)

try

int c;

int l;

FileReader fr = new
FileReader("F:\\JAVA\\Suresh's file\\text1.txt");

Page 179 | 245


FileWriter fr1 = new
FileWriter("F:\\JAVA\\Suresh's file\\texting.txt",true);

while ((c=fr.read())!=-1)

{ fr1.write((char)c); }

System.out.println("The contents of the file


in which the content is copied:");

fr1.close();

FileReader fr2 = new


FileReader("F:\\JAVA\\Suresh's file\\texting.txt");

while((l = fr2.read())!=-1)

System.out.print((char)l);

fr.close();

fr2.close();

catch(IOException e)

System.out.println("Exception:"+e);

} }

Page 180 | 245


Output:

Page 181 | 245


PROGRAM - 58

Aim: Create an applet to draw an image and text.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package applets;

import java.applet.Applet;
import java.awt.*;
public class apps1 extends Applet{
String s;
Image img;
public void init() {
img=getImage(getDocumentBase(),"pic.png");
s="THIS IS TEXT";
}
public void paint(Graphics g) {
g.setFont(new
Font("TimesRoman",Font.BOLD,20));
g.drawImage(img,100,100,this);
g.drawString(s, 30, 30);
}
}

Page 182 | 245


Output:

Page 183 | 245


PROGRAM - 59

Aim: Create an applet to showing moving banner.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package applets;

import java.applet.*;
import java.awt.*;
public class apps2 extends Applet implements Runnable{
public String str;
public void init()
{
str = "I am Applet,not an Application";
setBackground(Color.YELLOW);
}
public void start()
{
Thread t1 = new Thread(this,"Moving Banner");
t1.start();
}
public void paint(Graphics g)
{
g.setFont(new Font("Times New
Roman",Font.ITALIC,16));
g.setColor(Color.cyan);
g.drawString(str, 200, 200);
setSize(400,400);
}
@Override
public void run()
{

Page 184 | 245


while(true)
{
try
{
repaint();
Thread.sleep(1000);
str = str.substring(1)+str.charAt(0);
}
catch(InterruptedException e)
{
System.out.println("Interruption in
execution.");
}
}
}
public static void main(String[] args) {
apps2 mb = new apps2();

}
}

Page 185 | 245


Output:

Page 186 | 245


PROGRAM – 60

Aim: Create an applet to display the color based on three scrollbars for red, green
and blue respectively.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package applets;

import java.awt.event.AdjustmentEvent;
import java.awt.event.AdjustmentListener;
import java.applet.*;
import java.awt.*;
public class apps3 extends Applet implements
AdjustmentListener
{
Scrollbar scr,scg,scb;
Label lr,lg,lb;
Color c;
public void init()
{
scr = new
Scrollbar(Scrollbar.HORIZONTAL,0,0,0,256);
scg = new
Scrollbar(Scrollbar.HORIZONTAL,0,0,0,256);
scb = new
Scrollbar(Scrollbar.HORIZONTAL,0,0,0,256);
lr = new Label("R=0");
lg = new Label("G=0");
lb = new Label("B=0");
scr.addAdjustmentListener(this);
scg.addAdjustmentListener(this);
scb.addAdjustmentListener(this);

Page 187 | 245


Panel scrolls = new Panel();
Panel labels = new Panel();
add(scrolls);
add(labels);
scrolls.setLayout(new GridLayout(3,1,2,2));
scrolls.add(scr);
scrolls.add(scg);
scrolls.add(scb);
labels.setLayout(new GridLayout(3,1,2,2));
labels.add(lr);
labels.add(lg);
labels.add(lb);

public static void main(String[] args) {


// TODO Auto-generated method stub

@Override
public void adjustmentValueChanged(AdjustmentEvent e) {
// TODO Auto-generated method stub
int r = scr.getValue();
int g = scg.getValue();
int b = scb.getValue();
lr.setText(r+"");
lg.setText(g+"");
lb.setText(b+"");
c = new Color(r,g,b);
setBackground(c);

Page 188 | 245


Output:

Page 189 | 245


PROGRAM – 61

Aim: Create an applet to display the student details (name and rollno) on applet.
Pass the parameters through html file.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

PROGRAM(java):

package applets;

import java.applet.*;
import java.awt.*;

public class apps4 extends Applet{


public void paint(Graphics g) {
g.setFont(new Font("Courier", Font.BOLD, 18));
g.drawString("STUDENT DETAILS USING PARAM", 100,180);
String name = getParameter("n1");
String roll = getParameter("r1");
g.drawString("Name: ",120,250);
g.drawString(name, 200,250);
g.drawString("Roll: ",120,270);
g.drawString(roll, 200, 270);
}
}

Page 190 | 245


PROGRAM(html):

<html>

<body>

<applet code="AppletDemo2.class" width="500" height="500">

<param name="n1" value="Student1">

<param name="r1" value="00102020">

</applet>

</body>

</html>

Output:

Page 191 | 245


PROGRAM – 62

Aim: Write a program to create a registration page with different details of user
that is, username ,password,country,address,and submit button using the Flow
layout and awt package.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
package awtpack;

import java.awt.*;
import java.util.*;
import java.awt.event.*;

class Registerpage extends Frame implements WindowListener


{
Registerpage()
{
Label user = new Label("Username:");
TextField t1 = new TextField("Enter your
username:");
Label pass = new Label("Password:");
TextField t2 = new TextField("Enter your
Password:");
Label address = new Label("Address:");
TextArea t3 = new TextArea("Enter your address");
Label sub = new Label("Subjects:");
Checkbox ch1 = new Checkbox("Java",true);
Checkbox ch2 = new Checkbox("SE");
Checkbox ch3 = new Checkbox("WT");
Checkbox ch4 = new Checkbox("CN");
Checkbox ch5 = new Checkbox("PDS");
Label country = new Label("Country:");
Choice list1 = new Choice();
list1.add("India");
list1.add("USA");

Page 192 | 245


list1.add("Canada");
list1.add("Germany");
list1.add("France");
list1.add("Ukraine");
list1.add("Australia");
list1.setSize(100,200);
Button b1 = new Button("Submit");
Button b2 = new Button("Cancel");
add(user);
add(t1);
add(pass);
add(t2);
add(address);
add(t3);
add(sub);
add(ch1);
add(ch2);
add(ch3);
add(ch4);
add(ch5);
add(country);
add(list1);
add(b1);
add(b2);
setLayout(new FlowLayout());
addWindowListener(this);
}
@Override
public void windowOpened(WindowEvent e) {

}
@Override
public void windowClosing(WindowEvent e) {
dispose();

}
@Override
public void windowClosed(WindowEvent e) {

Page 193 | 245


}
@Override
public void windowIconified(WindowEvent e) {

}
@Override
public void windowDeiconified(WindowEvent e) {

}
@Override
public void windowActivated(WindowEvent e) {

}
@Override
public void windowDeactivated(WindowEvent e) {

} }

public class Regform1 {

public static void main(String[] args) {


Registerpage r1 = new Registerpage();
r1.setSize(500,600);
r1.setVisible(true);

Page 194 | 245


Output:

Page 195 | 245


PROGRAM - 63

Aim: Write a program to create a registration page with different details of the user
that is, username,password,country,address,and submit button using the Null layout
and awt package.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package awtpack;

import java.awt.*;
import java.util.*;
import java.awt.event.*;

class Registerpage1 extends Frame implements WindowListener


{
Registerpage1()
{
Font ft = new Font("Times New Roman",Font.BOLD,16);
Label user = new Label("Username:");
TextField t1 = new TextField("Enter your
username:");
Label pass = new Label("Password:");
TextField t2 = new TextField("Enter your
Password:");
Label address = new Label("Address:");
TextArea t3 = new TextArea("Enter your address");
Label sub = new Label("Subjects:");
Checkbox ch1 = new Checkbox("Java",true);
Checkbox ch2 = new Checkbox("SE");
Checkbox ch3 = new Checkbox("WT");
Checkbox ch4 = new Checkbox("CN");
Checkbox ch5 = new Checkbox("PDS");
Label country = new Label("Country:");

Page 196 | 245


Choice list1 = new Choice();
list1.add("Country");
list1.add("India");
list1.add("USA");
list1.add("Canada");
list1.add("Germany");
list1.add("France");
list1.add("Ukraine");
list1.add("Australia");
list1.setSize(100,200);
Button b1 = new Button("Submit");
Button b2 = new Button("Cancel");
Button b3 = new Button("Reset");
add(user);
user.setBounds(100,70,80,20);
user.setFont(ft);
add(t1);
t1.setBounds(200,70,150,20);
add(pass);
pass.setBounds(100,100,80,20);
pass.setFont(ft);
add(t2);
t2.setBounds(200,100,150,20);
add(address);
address.setBounds(100,150,80,20);
address.setFont(ft);
add(t3);
t3.setBounds(200,150,150,70);
add(sub);
sub.setBounds(100,240,80,20);
sub.setFont(ft);
add(ch1);
ch1.setBounds(200,240,50,20);
add(ch2);
ch2.setBounds(250,240,50,20);
add(ch3);
ch3.setBounds(300,240,50,20);
add(ch4);
ch4.setBounds(350,240,50,20);

Page 197 | 245


add(ch5);
ch5.setBounds(400,240,50,20);
add(country);
country.setBounds(100,280,80,20);
country.setFont(ft);
add(list1);
list1.setBounds(200,280,150,70);
add(b1);
b1.setBounds(170,320,80,20);
add(b2);
b2.setBounds(290,320,80,20);
add(b3);
b3.setBounds(410,320,80,20);
setLayout(null);
addWindowListener(this);
}

@Override
public void windowOpened(WindowEvent e) {

@Override
public void windowClosing(WindowEvent e) {
dispose();

@Override
public void windowClosed(WindowEvent e) {

@Override
public void windowIconified(WindowEvent e) {

@Override

Page 198 | 245


public void windowDeiconified(WindowEvent e) {

@Override
public void windowActivated(WindowEvent e) {

@Override
public void windowDeactivated(WindowEvent e) {

}
}

public class regform {

public static void main(String[] args) {


Registerpage1 r1 = new Registerpage1();
r1.setSize(1000,2000);
r1.setVisible(true);

Page 199 | 245


Output:

Page 200 | 245


PROGRAM - 64

Aim: Write a program to demonstrate Border Layout. Use concept of Adapter


Classes to close the frame.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package awtpack;

import java.awt.*;

import java.awt.event.*;

public class borderlayout1 extends Frame implements


ActionListener,WindowListener {

/**

*/

private static final long serialVersionUID = 1L;

Button b1,b2,b3,b4,b5;

public borderlayout1()

b1=new Button("WEST");

b2=new Button("EAST");

b3=new Button("NORTH");

Page 201 | 245


b4=new Button("SOUTH");

b5=new Button("CENTER");

setLayout(new BorderLayout());

add(b1,BorderLayout.WEST);

add(b2,BorderLayout.EAST);

add(b3,BorderLayout.NORTH);

add(b4,BorderLayout.SOUTH);

add(b5,BorderLayout.CENTER);

b1.addActionListener(this);

b2.addActionListener(this);

b3.addActionListener(this);

b4.addActionListener(this);

b5.addActionListener(this);

addWindowListener(this);

public void actionPerformed1(ActionEvent e){

b1.setFont(new Font("Consolas",Font.BOLD,18));

b2.setFont(new Font("Consolas",Font.BOLD,18));

b3.setFont(new Font("Consolas",Font.BOLD,18));

b4.setFont(new Font("Consolas",Font.BOLD,18));

b5.setFont(new Font("Consolas",Font.BOLD,18));

Page 202 | 245


public Insets GetInsets()

return new Insets(50,30,20,20);

public static void main(String[] args) {

borderlayout1 bl=new borderlayout1();

bl.setSize(200, 300);

bl.setVisible(true);

// TODO Auto-generated method stub

@Override

public void windowOpened(WindowEvent e) {

// TODO Auto-generated method stub

@Override

public void windowClosing(WindowEvent e) {

// TODO Auto-generated method stub

dispose();

@Override

public void windowClosed(WindowEvent e) {

// TODO Auto-generated method stub

Page 203 | 245


}

@Override

public void windowIconified(WindowEvent e) {

// TODO Auto-generated method stub

@Override

public void windowDeiconified(WindowEvent e)


{ // TODO Auto-generated method stub

@Override

public void windowActivated(WindowEvent e) {

// TODO Auto-generated method stub

@Override

public void windowDeactivated(WindowEvent e)


{ // TODO Auto-generated method stub

@Override

public void actionPerformed(ActionEvent e) {

// TODO Auto-generated method stub

Page 204 | 245


Output:

Page 205 | 245


PROGRAM – 65

Aim: program to develop a GUI calculator using frames.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
package awtpack;
import java.awt.*;
import java.awt.event.*;
public class calculator extends Frame implements
WindowListener,ActionListener{ Button
b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15,b16,b17,b
18,b19;
TextField t1;
public calculator()
{
t1 = new TextField(10);
b1 = new Button("C");
b2 = new Button("%");
b3 = new Button("/");
b4 = new Button("7");
b5 = new Button("8");
b6 = new Button("9");
b7 = new Button("*");
GridBagLayout gbl = new GridBagLayout();
setLayout(gbl);
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx=0;
gbc.gridy=0;
gbc.gridwidth=4;
gbc.ipady = 25;
t1.setBackground(Color.LIGHT_GRAY);
gbc.insets=new Insets(5,5,5,5);
add(t1, gbc);
gbc = new GridBagConstraints();
gbc.gridx=3;

Page 206 | 245


gbc.gridy=1;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b1, gbc);
gbc = new GridBagConstraints();
gbc.gridx=3;
gbc.gridy=5;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b2, gbc);

gbc = new GridBagConstraints();


gbc.gridx=0;
gbc.gridy=5;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b3, gbc);
gbc = new GridBagConstraints();
gbc.gridx=0;
gbc.gridy=2;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b4, gbc);
gbc = new GridBagConstraints();
gbc.gridx=1;
gbc.gridy=2;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b5, gbc);
gbc = new GridBagConstraints();
gbc.gridx=2;
gbc.gridy=2;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b6, gbc);
gbc = new GridBagConstraints();
gbc.gridx=3;
gbc.gridy=2;
gbc.fill=GridBagConstraints.HORIZONTAL;

Page 207 | 245


gbc.insets=new Insets(5,5,5,5);
add(b7, gbc);
b8 = new Button("4");
b9 = new Button("5");
b10 = new Button("6");
b11 = new Button("-");
b12 = new Button("1");
b13 = new Button("2");
b14 = new Button("3");
b15 = new Button("+");
gbc = new GridBagConstraints();
gbc.gridx=0;
gbc.gridy=3;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b8, gbc);
gbc = new GridBagConstraints();
gbc.gridx=1;
gbc.gridy=3;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b9, gbc);
gbc = new GridBagConstraints();
gbc.gridx=2;
gbc.gridy=3;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b10, gbc);
gbc = new GridBagConstraints();
gbc.gridx=3;
gbc.gridy=3;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b11, gbc);
gbc = new GridBagConstraints();
gbc.gridx=0;
gbc.gridy=4;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);

Page 208 | 245


add(b12, gbc);
gbc = new GridBagConstraints();
gbc.gridx=1;
gbc.gridy=4;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b13, gbc);
gbc = new GridBagConstraints();
gbc.gridx=2;
gbc.gridy=4;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b14, gbc);
gbc = new GridBagConstraints();
gbc.gridx=3;
gbc.gridy=4;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b15, gbc);

b17 = new Button("0");


b18 = new Button(".");
b19 = new Button("=");
gbc = new GridBagConstraints();

gbc = new GridBagConstraints();


gbc.gridx=1;
gbc.gridy=5;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b17, gbc);
gbc = new GridBagConstraints();
gbc.gridx=2;
gbc.gridy=5;
gbc.fill=GridBagConstraints.HORIZONTAL;
gbc.insets=new Insets(5,5,5,5);
add(b18, gbc);
gbc = new GridBagConstraints();

Page 209 | 245


gbc.gridx=0;
gbc.gridy=1;
gbc.gridwidth=3;
gbc.fill=GridBagConstraints.HORIZONTAL;
b19.setBackground(Color.lightGray);
gbc.insets=new Insets(5,5,5,5);
add(b19, gbc);
addWindowListener(this);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
b5.addActionListener(this);
b6.addActionListener(this);
b7.addActionListener(this);
b8.addActionListener(this);
b9.addActionListener(this);
b10.addActionListener(this);
b11.addActionListener(this);
b12.addActionListener(this);
b13.addActionListener(this);
b14.addActionListener(this);
b15.addActionListener(this);
b17.addActionListener(this);
b18.addActionListener(this);
b19.addActionListener(this);
}

@Override
public void windowOpened(WindowEvent e) {
}
@Override
public void windowClosing(WindowEvent e) {
dispose(); }
@Override
public void windowClosed(WindowEvent e) {
dispose();
}

Page 210 | 245


@Override
public void windowIconified(WindowEvent e) {
}

@Override
public void windowDeiconified(WindowEvent e) {
}

@Override
public void windowActivated(WindowEvent e) {
}
@Override
public void windowDeactivated(WindowEvent e) {
}
public static void main(String[] args) {
calculator c1 = new calculator();
c1.setSize(180,270);
c1.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
String info = t1.getText();
if(e.getActionCommand() == "C")
{
t1.setText("");
}
if(e.getActionCommand() == "7")
{
t1.setText(info+"7");
}
if(e.getActionCommand() == "8")
{
t1.setText(info+"8");
}
if(e.getActionCommand() == "9")
{
t1.setText(info+"9");
}
if(e.getActionCommand() == "6")

Page 211 | 245


{
t1.setText(info+"6");
}
if(e.getActionCommand() == "5")
{
t1.setText(info+"5");
}
if(e.getActionCommand() == "4")
{
t1.setText(info+"4");
}
if(e.getActionCommand() == "3")
{
t1.setText(info+"3");
}
if(e.getActionCommand() == "2")
{
t1.setText(info+"2");
}
if(e.getActionCommand() == "1")
{
t1.setText(info+"1");
}
if(e.getActionCommand() == "0")
{
t1.setText(info+"0");
}
if(e.getActionCommand() == ".")
{
t1.setText(info+".");
}
if(e.getActionCommand() == "+")
{
t1.setText(info+"+");
}
if(e.getActionCommand() == "-")
{
t1.setText(info+"-");
}

Page 212 | 245


if(e.getActionCommand() == "*")
{
t1.setText(info+"*");
}
if(e.getActionCommand() == "/")
{
t1.setText(info+"/");
}
if(e.getActionCommand() == "%")
{
t1.setText(info+"%");
}
if(e.getActionCommand() == "=")
{
if(info.indexOf("+") > 0)
{
String op1 = info.substring(0,
info.indexOf("+"));
String op2 =
info.substring(info.indexOf("+")+1,info.length());
float operand1 = Float.parseFloat(op1);
float operand2 = Float.parseFloat(op2);
float result = operand1+operand2;
t1.setText(String.valueOf(result));
}
if(info.indexOf("-") > 0)
{
String op1 = info.substring(0,
info.indexOf("-"));
String op2 =
info.substring(info.indexOf("-")+1,info.length());
float operand1 = Float.parseFloat(op1);
float operand2 = Float.parseFloat(op2);
float result = operand1-operand2;
t1.setText(String.valueOf(result));
}
if(info.indexOf("*") > 0)
{

Page 213 | 245


String op1 = info.substring(0,
info.indexOf("*"));
String op2 =
info.substring(info.indexOf("*")+1,info.length());
float operand1 = Float.parseFloat(op1);
float operand2 = Float.parseFloat(op2);
float result = operand1*operand2;
t1.setText(String.valueOf(result));
}
if(info.indexOf("/") > 0)
{
String op1 = info.substring(0,
info.indexOf("/"));
String op2 =
info.substring(info.indexOf("/")+1,info.length());
float operand1 = Float.parseFloat(op1);
float operand2 = Float.parseFloat(op2);
float result = operand1/operand2;
t1.setText(String.valueOf(result));
}
if(info.indexOf("%") > 0)
{
String op1 = info.substring(0,
info.indexOf("%"));
String op2 =
info.substring(info.indexOf("%")+1,info.length());
float operand1 = Float.parseFloat(op1);
float operand2 = Float.parseFloat(op2);
float result = operand1%operand2;
t1.setText(String.valueOf(result));
}
}
}
}

Page 214 | 245


Output:

Page 215 | 245


PROGRAM - 66

Aim: User Registration form using swings (Q-62 AWT) along with the events
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:
package awtpack;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class RegisterationPage extends JFrame implements
WindowListener,ActionListener,FocusListener
{
JTextField t1,t2;
JTextArea t3;
CheckboxGroup cbg;
Checkbox Male,Female,ch1,ch2,ch3,ch4,ch5;
Choice list1;
JLabel alert,a1,a2,a3,a4,a5,a6;
JButton b1,b2,b3;
RegisterationPage()
{
Font Formfont = new Font("Serif",Font.BOLD,18);
Font ft = new Font("Times New Roman",Font.BOLD,16);
JLabel Form = new JLabel("USER REGISTRATION FORM");
JLabel user = new JLabel("Username");
t1 = new JTextField("");
JLabel pass = new JLabel("Password");
t2 = new JTextField("");
JLabel Gender = new JLabel("Gender");
cbg = new CheckboxGroup();
Male = new Checkbox("Male",cbg,true);

Female = new Checkbox("Female",cbg,false);

JLabel address = new JLabel("Address");

Page 216 | 245


JTextArea t3 = new JTextArea("");
JLabel sub = new JLabel("Subjects");
ch1 = new Checkbox("CN");
ch2 = new Checkbox("WT");
ch3 = new Checkbox("SE");
ch4 = new Checkbox("MATHS");
ch5 = new Checkbox("JAVA");
JLabel country = new JLabel("Country");
list1 = new Choice();
list1.add("Country");
list1.add("Australia");
list1.add("India");
list1.add("France");
list1.add("Russia");
list1.add("Denmark");
list1.add("Hungary");
list1.add("Iran");
list1.add("Italy");
list1.add("USA");
list1.setSize(100,200);
b1 = new JButton("Submit");
b2 = new JButton("Reset");
b3 = new JButton("Cancel");
b2.addActionListener(this);
alert = new JLabel();
a1 = new JLabel();
a2 = new JLabel();
a3 = new JLabel();
a4 = new JLabel();
a5 = new JLabel();
a6 = new JLabel();

add(Form);
Form.setBounds(140,60,300,30);
Form.setFont(Formfont);

add(user);
user.setBounds(100,120,80,20);
user.setFont(ft);

Page 217 | 245


add(t1);
t1.setBounds(200,120,150,20);

add(pass);
pass.setBounds(100,160,80,20);
pass.setFont(ft);
add(t2);
t2.setBounds(200,160,150,20);

add(Gender);
Gender.setBounds(100,200,80,20);
Gender.setFont(ft);

add(Male);
Male.setBounds(200,200, 80, 20);

add(Female);
Female.setBounds(280,200, 80, 20);

add(address);
address.setBounds(100,240,80,20);
address.setFont(ft);
add(t3);
t3.setBounds(200,240,150,70);

add(country);
country.setBounds(100,340,80,20);
country.setFont(ft);
add(list1);
list1.setBounds(200,340,150,70);

add(sub);
sub.setBounds(100,380,80,20);
sub.setFont(ft);
add(ch1);
ch1.setBounds(200,380,50,20);
add(ch2);
ch2.setBounds(250,380,50,20);

Page 218 | 245


add(ch3);
ch3.setBounds(300,380,50,20);
add(ch4);
ch4.setBounds(350,380,60,20);
add(ch5);
ch5.setBounds(410,380,50,20);

add(alert);
alert.setBounds(170,450, 200,20);
add(a1);
a1.setBounds(400,70,150,20);
add(a2);
a2.setBounds(400,100,150,20);
add(a3);
a3.setBounds(450,125,150,20);
add(a4);
a4.setBounds(450,150,100,40);
add(a5);
a5.setBounds(470,240,70,20);
add(a6);
a6.setBounds(400,280,70,20);

add(b1);
b1.setBounds(110,420,80,20);
add(b2);
b2.setBounds(220,420,80,20);
add(b3);
b3.setBounds(330,420,80,20);
setLayout(null);
addWindowListener(this);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
t1.addFocusListener(this);
}

@Override
public void windowOpened(WindowEvent e) {
}

Page 219 | 245


@Override
public void windowClosing(WindowEvent e) {
dispose();
}
@Override
public void windowClosed(WindowEvent e) {
}
@Override
public void windowIconified(WindowEvent e) {
}
@Override
public void windowDeiconified(WindowEvent e) {
}
@Override
public void windowActivated(WindowEvent e) {
}
@Override
public void windowDeactivated(WindowEvent e) {
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getActionCommand() == "Cancel"){
System.exit(0);
}
if(e.getActionCommand() == "Reset"){
t1.setText("");
t2.setText("");
t3.setText("");
list1.select(0);
cbg.setSelectedCheckbox(Male);
ch1.setState(true);
ch2.setState(false);
ch3.setState(false);
ch4.setState(false);
ch5.setState(false);
}
if(e.getActionCommand() == "Submit") {
String str1 = t1.getText();
String str2 = t2.getText();

Page 220 | 245


String special = "!@#$%^&*()_-=.,[]+{}:?><~";
if(str1.length()==10 && str2.length()==8)
{
boolean upper=false;
boolean lower=false;
boolean spec=false;
for(int i=0;i<str2.length();i++)
{
char ch = str2.charAt(i);
if(Character.isUpperCase(ch)==true)
{
upper = true;
}
if(Character.isLowerCase(ch)==true)
{
lower = true;
}
if(special.contains(String.valueOf(ch)))
{
spec = true;
}
}
if(upper && lower && spec)
{
String counter = "";
alert.setText("Registered Successfully!");
a1.setText(str1);
a2.setText(str2);

a3.setText(cbg.getSelectedCheckbox().getLabel());
a4.setText(t3.getText());
if(ch1.getState()==true)
{
counter = counter+ch1.getLabel()+" ";
}
if(ch2.getState()==true)
{
counter = counter+ch2.getLabel()+" ";
}

Page 221 | 245


if(ch3.getState()==true)
{
counter = counter+ch3.getLabel()+" ";
}
if(ch4.getState()==true)
{
counter = counter+ch4.getLabel()+" ";
}
if(ch5.getState()==true)
{
counter = counter+ch5.getLabel()+" ";
}
a5.setText(counter);
a6.setText(list1.getSelectedItem());
}
else{
alert.setText("Details are Incorrect!");
}
}
else {
alert.setText("Details are Incorrect!");
}
}
}
@Override
public void focusGained(FocusEvent e) {
t1.setText("");
}

@Override
public void focusLost(FocusEvent e) {

} }

public class regipage {


public static void main(String[] args) {
RegisterationPage rp1 = new RegisterationPage();
rp1.setSize(500,550);
rp1.setVisible(true); } }

Page 222 | 245


Output:

Page 223 | 245


PROGRAM - 67

Aim: Create a JTabbedPane to show your subjects till semester 4. The semester
4 subjects should be added in a JList.
Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &
Eclipse IDE - 2021-12
Program:

package awtpack;

import javax.swing.*;

import java.awt.*;

public class JListDemo extends JFrame

JTabbedPane t1=new JTabbedPane();

JPanel jp1,jp2,jp3,jp4;

Container cp,c1;

public JListDemo(){

jp1=new JPanel();

jp2=new JPanel();

jp3=new JPanel();

jp4=new JPanel();

c1=getContentPane();

jp1.setLayout(new GridLayout(1,1));

Page 224 | 245


jp2.setLayout(new GridLayout(1,1));

jp3.setLayout(new GridLayout(1,1));

jp4.setLayout(new GridLayout(1,1));

String s1[]= {"Mathematics I ","Technical


Communication", "Introduction To Programming Language Using
C", "Introduction to Computers & IT","Physics"};

JList jl1= new JList(s1);

jp1.add(jl1);

String s2[]= {"Mathematics II ","Principles of


Management","Digital Electronics", "Data Structure Using
C"," Database Management System"};

JList jl2= new JList(s2);

jp2.add(jl2);

String s3[]= { "Mathematics III ","Computer


Architecture ","Object Oriented Programming Using
C++","Front End Design Tool VB.Net", "Principles of
Accounting"};

JList jl3= new JList(s3);

jp3.add(jl3);

String s4[]= { "Mathematics IV","Java


Programming","Web Technologies", "Software
Engineering","Computer Networks"};

Page 225 | 245


JList jl4= new JList(s4);

jp4.add(jl4);

cp=getContentPane();

cp.setLayout(new GridLayout(1,1));

t1.addTab("Semester 1",jp1);

t1.addTab("Semester 2",jp2);

t1.addTab("Semester 3",jp3);

t1.addTab("Semester 4",jp4);

cp.add(t1);

public static void main(String args[])

JListDemo jlist =new JListDemo();

jlist.setSize(500,350);

jlist.setVisible(true);

Page 226 | 245


Output:

Page 227 | 245


PROGRAM - 68

Aim: Create a JTable to show name, rollno and marks of student. Add the JTable
to JScrollPane.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package awtpack;

import javax.swing.*;
public class JTableDemo {
JFrame f;
JTableDemo(){
f=new JFrame("JTableDemo");
String x[][]={ {"1","Ramesh","88"},
{"2","Vivek","78"},
{"3","Ram","70"},
{"4","Aman","80"},
{"5","Rajeev","90"}};
String y[]={"Roll No.","Name","Marks"};
JTable jt=new JTable(x,y);
jt.setBounds(30,40,200,300);
JScrollPane jsp=new JScrollPane(jt);
f.add(jsp);
f.setSize(300,300);
f.setVisible(true);
}
public static void main(String[] args) {
new JTableDemo();
}
}

Page 228 | 245


Output:

Page 229 | 245


PROGRAM - 69

Aim: Write a program to obtain the InetAddress given


a) Hostname
b) IP Address
To obtain Hostname and IP address given the InetAddress.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

package networking;
import java.net.*;
public class InetAddressDemo {
public static void main(String[] args) throws
UnknownHostException{
InetAddress Address =
InetAddress.getByName("www.google.com");
System.out.println(Address);

Address = InetAddress.getLocalHost();
System.out.println(Address);

InetAddress A[] =
InetAddress.getAllByName("www.google.com");

for(int i=0; i<A.length; i++){


System.out.println(A[i]);
}
}
}

Page 230 | 245


Output:

Page 231 | 245


PROGRAM - 70

Aim: Write a program to perform client server communication using TCP


Sockets.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

Server Source Code:


package networking;
import java.io.*;
import java.net.*;
public class serverSocketDemo {
public static void main(String[] args)
{ try {

System.out.println("Server Started...");
ServerSocket serversocket= new ServerSocket(6000);

System.out.println("Waiting for request....");


Socket socket = serversocket.accept();
DataInputStream dis= new
DataInputStream(socket.getInputStream());
String str = (String)dis.readUTF();
System.out.println("Message: "+ str);
socket.close();
serversocket.close();
}
catch (IOException e) {
e.getStackTrace();
}
}
}

Page 232 | 245


Client Source Code:
package networking;

import java.io.*;
import java.net.*;

public class clientSocketTest {


public static void main(String[] args)
{
try {
Socket socket = new Socket("localhost", 6000);
System.out.println("Socket Bound:
"+socket.isBound());
System.out.println("Socket Connected:
"+socket.isConnected());

BufferedReader br = new BufferedReader(new


InputStreamReader(System.in));
System.out.print("Enter a String: ");
String str=br.readLine();
System.out.println("Entered String: "+ str);
DataOutputStream dous= new
DataOutputStream(socket.getOutputStream());
dous.writeUTF(str);
dous.close();
}
catch (UnknownHostException e) {
e.getStackTrace();
}
catch (IOException e) {
e.getStackTrace();
}
}
}

Page 233 | 245


Output:

Page 234 | 245


PROGRAM - 71

Aim: Write a program to perform client server communication using UDP


Datagrams.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

Server Source Code:


package networking;

import java.net.*;
import java.net.DatagramSocket;
public class serverUDP {
public static void main(String args[]) {
DatagramSocket server = null;
DatagramPacket packet = null;
try {
server = new DatagramSocket(6000);
System.out.println("Server started...");
System.out.println("Waiting for message from
client side.");
}
catch(Exception e){
e.getStackTrace();
}
byte[] buf = new byte[256];
packet = new DatagramPacket(buf,buf.length);
try {
server.receive(packet);
}
catch(Exception e) {
e.getStackTrace();
}

Page 235 | 245


String msg = new String(packet.getData());
System.out.print("Message: ");
System.out.println(msg);
server.close();
}
}
Client Source Code:
package networking;

import java.net.*;
import java.net.DatagramSocket;
import java.net.InetAddress;
public class clientUDP {
public static void main(String[] args) {
InetAddress inet = null;
DatagramSocket client = null;
try {
client = new DatagramSocket();
System.out.println(client.isBound());
System.out.println(client.isConnected());
inet = InetAddress.getByName("Localhost");
}
catch(Exception e) {
e.getStackTrace();
}
String str = "Hello Everyone !!";
byte[] buf = str.getBytes();
DatagramPacket dp = new
DatagramPacket(buf,buf.length,inet,6000);
try {
client.send(dp);
System.out.println(client.isConnected());
}
catch(Exception e) {
e.getStackTrace();
}
}
}

Page 236 | 245


Output:

Page 237 | 245


PROGRAM - 72

Aim: Write a program to perform create, insert, update and delete operations on
database using Statement.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

import java.sql.*;
public class dbmsconnect {

public static void main(String[] args) {


// TODO Auto-generated method stub
try {
String url="jdbc:mysql://localhost:3306/op";
Connection con =
DriverManager.getConnection(url,"root","1234@");
Statement stmt = con.createStatement();
stmt.executeUpdate("Create table Student2(sname
varchar(20),rno varchar(5), mobile varchar(20));");
stmt.executeUpdate("insert into Student2
values('Majnu','007','9874563214');");
stmt.executeUpdate("insert into Student2 values('Uday
Shetty','001','7894465133')");
stmt.executeUpdate("insert into Student2
values('Ramesh','005','8379882784')");

int x = stmt.executeUpdate("Update Student2 set rno


= '007' where sname = 'Majnu'");
x = stmt.executeUpdate("DELETE from Student2 where rno
='005' ");
if(x>=0) {
System.out.println("Updated and Deleted
Successfully!");

Page 238 | 245


}
ResultSet rs=stmt.executeQuery("select * from
student2;");
while(rs.next()) {
System.out.println(rs.getString(1)+"
"+rs.getString(2)+" "+rs.getString(3));
}
}
catch(SQLException e)
{
System.out.print(e);
}
}

Output:

MYSQL WORKBENCH :

Page 239 | 245


PROGRAM - 73

Aim: Write a program to perform create, insert, update and delete operations on
database using PreparedStatement.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:
import java.sql.*;
public class dbmsconnect2 {
public static void main(String[] args) {
try {
String url = "jdbc:mysql://localhost:3306/op";
Connection con =
DriverManager.getConnection(url,"root","1234@");
String query ="Create table Employee(Eid int,
Name varchar(20),MobileNo varchar(10))";
PreparedStatement pstmt =
con.prepareStatement(query);
pstmt.execute();
System.out.println("Table Created
Successfully.");
pstmt = con.prepareStatement("Insert into
Employee values (?,?,?)");
pstmt.setInt(1, 1);
pstmt.setString(2, "Vijay");
pstmt.setString(3, "9638527412");
int i= pstmt.executeUpdate();
System.out.println(i+" record inserted.");
System.out.println("Employee table:");
pstmt = con.prepareStatement("Select * from
Employee");
ResultSet rs= pstmt.executeQuery();
while(rs.next()) {

Page 240 | 245


System.out.println(rs.getInt(1)+"
"+rs.getString(2)+" "+rs.getString(3));
con.close();
}

}
catch(Exception e){
e.getStackTrace();
}
}
}

Output:

MYSQL WORKBENCH :

Page 241 | 245


PROGRAM - 74

Aim: Create a web page containing username and password. The request should
hit servlet which will authenticate the user. If the user is authenticated, the
response should display the username along with date and time. If the user is not
authenticated, the response should display You are not authenticated.

Software Used: intel(R) Core(TM) i7-4510U, 64-bit operating system &


Eclipse IDE - 2021-12
Program:

HTML FILE :
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Login Form</title>
</head>
<body>
<form method="get" action="serv1">
Username: <input name="uname" type="text"
placeholder="Username" required><br>
Password: <input name="pass0" type="password"
placeholder="password" required><br>
<input type="submit">
</form>

</body>
</html>

Page 242 | 245


SERVLET FILE :
package p2;

import jakarta.servlet.*;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.*;

import java.io.IOException;
import java.util.Date;
public class serv1 extends HttpServlet {
protected void doGet(HttpServletRequest
request, HttpServletResponse response) throws
ServletException, IOException {
PrintWriter pw=response.getWriter();
Date date=new Date();
String name=request.getParameter("name");
pw.println("hello,"+name);
pw.println("Date :"+date);

Page 243 | 245


pw.close(); }
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws
ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response); }
}
WEB.XML FILE:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<display-name>Javawebproject</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>serv1</servlet-name>
<servlet-class>p2.serv1</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>serv1</servlet-name>
<url-pattern>/serv1</url-pattern>
</servlet-mapping>
</web-app>

Page 244 | 245


Output:

Page 245 | 245

You might also like