Java File
Java File
Page 1 | 245
INDEX
23
456
7 8 9 10
5. Write a program to demonstrate the Methods in Math 16
class.
Page 2 | 245
10. Write a program to read the income and print the 29
income tax due.
Page 3 | 245
23. Write a program to demonstrate the concept of private 67
constructors.
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.
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.
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.
Page 6 | 245
60. Create an applet to display the color based on three 187
scrollbars for red, green and blue respectively.
Page 7 | 245
70. To perfom client server communication using TCP 232
Sockets.
Page 8 | 245
PROGRAM - 1
Aim: Program to input a character from user and determine its ASCII value
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.
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
Program:
Page 12 | 245
Output:
Page 13 | 245
PROGRAM - 4
23
456
7 8 9 10
Page 14 | 245
Output:
Page 15 | 245
PROGRAM - 5
import java.util.Scanner;
public class Maths {
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>
import java.util.Scanner;
public class func1 {
Page 18 | 245
Output:
Page 19 | 245
PROGRAM - 7
Aim: program to determine maximum of a 1D array .
import java.util.Scanner;
public class max {
Page 20 | 245
Output:
Page 21 | 245
PROGRAM - 8
Aim: program to input two matrices, display them and print the sum.
import java.util.Scanner;
public class Add_Matrix {
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.
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/-
Page 29 | 245
Output:
Page 30 | 245
PROGRAM - 11
Aim: program to develop calculator using switch case.
import java.util.Scanner;
public class calculator {
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.
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
Page 35 | 245
Output:
Page 36 | 245
PROGRAM - 14
Aim: program to determine the sum of 2D array using for-each loop.
Page 37 | 245
Output:
Page 38 | 245
PROGRAM - 15
Aim: program to search an element in 1D array using for-each loop.
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.
import java.util.Scanner;
import java.io.*;
arr1[0][0] = scan.nextInt();
for(int i=0;i<2;i++)
Page 41 | 245
arr1[1][i] = scan.nextInt();
for(int j=0;j<3;j++)
arr1[2][j] = scan.nextInt();
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.
import java.util.Scanner;
import java.io.*;
class Student
int roll;
String name;
int age;
Student()
roll = 052;
name = "User";
age = 18;
Page 44 | 245
roll = r;
name = n;
age = a;
void display()
Student s1[];
s1 = new Student[3];
int n1,n3,n4,n6,n9,n7;
String n2,n5,n8;
Page 45 | 245
s1[0] = new Student();
n1 = scan.nextInt();
n2 = scan.next();
n3 = scan.nextInt();
s1[0].input(n1,n2,n3);
n4 = scan.nextInt();
n5 = scan.next();
n6 = scan.nextInt();
s1[1].input(n4,n5,n6);
n7 = scan.nextInt();
Page 46 | 245
n8 = scan.next();
n9 = scan.nextInt();
s1[1].input(n7,n8,n9);
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
import java.util.Scanner;
import java.util.ArrayList;
Page 49 | 245
ArrayList<String> l1 = new ArrayList<String>();
l1.add("Banana");
l1.add("Apple");
l1.add("Orange");
l1.add("Peach");
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();
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)+" ");
l1.clear();
System.out.println("Elements in list:");
for(int i=0;i<l1.size();i++)
System.out.println(l1.get(i)+" ");
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("Element at
"+ind+l1.get(ind));
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));
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());
int in = scan.nextInt();
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.
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
Create another class BankDemo that will create the Bank class object and access the
methods in Bank
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
Also use the Led object to call methods devicetype(), category() an display_tech()
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");
}
}
Page 63 | 245
Output:
Page 64 | 245
PROGRAM - 22
int id;
String name;
ConsOver(){
System.out.println("this a default constructor");
}
Page 65 | 245
Output:
sf
Page 66 | 245
PROGRAM - 23
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();
}
}
Page 67 | 245
Output:
Page 68 | 245
PROGRAM - 24
Page 69 | 245
} }
Page 70 | 245
Output:
Page 71 | 245
PROGRAM - 25
class Bike{
System.out.println("running");
void run()
honda.run();
Page 72 | 245
Output:
Page 73 | 245
PROGRAM - 26
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
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.
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);
}
}
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
}
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
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;
} } }
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.
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
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
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
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.
import java.io.*;
import java.io.FileReader;
import java.util.Scanner;
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.
import java.util.Scanner;
import java.io.*;
int age;
VoterException(int r)
age = r;
} }
try
int ag = scan.nextInt();
if(ag>18)
System.out.println("Voter is Enrolled");
else
} }
catch(VoterException person)
System.out.println("Exception:"+person);
} } }
import java.util.Scanner;
import java.io.*;
class ChainedException1{
public static void main(String[] args) {
try {
Output:
import java.util.Scanner;
import java.io.FileReader;
import java.io.*;
Aim: program to implement the concept of creating a thread using the Thread class
and inheriting it.
Aim: program to implement the concept of creating a thread using the runnable
interface and implementing it.
package java1;
}
}
Through newCachedThreadPool():
import java.util.Scanner;
import java.util.concurrent.*;
char wo;
int n;
wo = word;
for(int i=0;i<n;i++)
System.out.print(" "+wo);
char wo1;
int n2;
wo1 = word1;
n2 = num1;
for(int i=0;i<n2;i++)
System.out.print(" "+wo1);
int n1;
int power;
n1 = num1;
power = p1;
System.out.println();
for(int i=1;i<=n1;i++)
System.out.println(" "+Math.pow(i,power));
int p = scan.nextInt();
ExecutorService processing =
Executors.newCachedThreadPool();
processing.shutdown();
Output:
public class a {
public static void main(String[] args) {
}
}
Output:
import java.util.*;
import java.io.*;
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.
if(thread1.getPriority()>=Thread.currentThread().getPrio
rity())
{
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();
}
Output:
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.
package thread1;
System.out.println(Thread.currentThread().getName()+":"+resu
lt);
}
}
System.out.println("Exception:"+e.getMessage());
}
}
}
Output:
Aim: program to suspend and resume a thread. Create two custom methods for the
same.
import java.util.*;
import java.io.*;
String msg;
boolean flag;
mythread(String text)
msg = text;
for(int i=1;i<10;i++)
System.out.println(msg+" "+i);
synchronized(this)
while(flag)
try
wait();
catch(InterruptedException e)
System.out.println("Exception:"+e.getMessage()); }
flag = true;
flag = false;
notify();
} }
thread1.start();
thread2.start();
t.suspendthread();
try
Thread.sleep(11000);
catch(InterruptedException e) {
System.out.println("Exception:"+e.getMessage()); }
t.resumethread();
Output:
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.
import java.util.*;
import java.io.*;
class Q
int n;
while(!produce)
try
{ wait();}
catch(Exception e)
System.out.println("Got: "+n);
produce = false;
notify();
while(produce)
try
{ wait();}
catch(Exception e){System.out.println(e);} }
this.n = n;
System.out.println("Put: "+n);
produce = true;
notify();
String msg;
q = item;
msg = text;
int i = 0;
while(true)
q.put(i++);
Q q;
String msg;
q = item;
msg = text;
while(true)
q.get();
t2.start();
import java.util.*;
import java.io.*;
class Thread1
System.out.println(Thread.currentThread().getName());
th.caller();
class Thread2
System.out.println(Thread.currentThread().getName());
th1.caller();
t1.mymethodB(t);
t.mymethodA(t1);
System.out.println("Main Thread");
important.start();
l.Deadlockstart();
import java.util.Scanner;
import java.util.Scanner;
import java.util.Scanner;
import java.util.Scanner;
import java.util.Scanner;
import java.util.Scanner;
import java.util.Scanner;
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.
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.'
import java.util.*;
import java.io.*;
str1 = scan.nextLine();
if(str1.matches("^.*[a-z|A-Z]1[0-9][0-9]$"))
else {
} } }
import java.io.*;
import java.util.Scanner;
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.print("e)");
str1.append(s2);
System.out.print("f)");
str1.reverse();
System.out.println("Reversed String:"+str1);
System.out.print("g)");
str1.setCharAt(0,'A');
System.out.print("h)");
str1.insert(1,"Java");
System.out.print("i)");
str1.deleteCharAt(2);
System.out.print("j)");
str1.delete(1,4);
System.out.print("k)");
str1.replace(0,3,"Hiii");
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"));
} }
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;
try
String name;
int rollno;
char section;
double marks2;
double marks3;
double percentage;
name = br.readLine();
rollno = Integer.parseInt(br.readLine());
marks1 = Float.parseFloat(br.readLine());
marks2 = Float.parseFloat(br.readLine());
marks3 = Float.parseFloat(br.readLine());
percentage = (marks1+marks2+marks3)/3.0f;
section = (char)br.read();
System.out.println("Entered Section:"+section);
br.read();
br.close();
catch(IOException e)
System.out.println(e.getMessage());
Aim: Write a program to read a file using BufferedReader. Use try with resources
statement.
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.Scanner;
import java.io.*;
import java.lang.Float;
{ String line;
while((line = br.readLine())!=null)
{ System.out.println(line); } }
catch(IOException l) {
System.err.format("Exception:"+l); }
} }
import java.util.Scanner;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.*;
import java.util.*;
System.out.print((char)bfs.read());
bfs.mark(10);
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());
import java.io.*;
import java.io.PushbackReader;
import java.io.CharArrayReader;
import java.util.Scanner;
int a;
int c = 3;
System.out.println((char)a);
fl.unread(a);
c--;
catch(IOException l)
System.err.format("Exception:"+l);
Aim: Write a program to copy the contents of one file to another in java. Use
FileReader and FileWriter stream classes.
import java.util.Scanner;
import java.util.*;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.*;
try
int c;
int l;
FileReader fr = new
FileReader("F:\\JAVA\\Suresh's file\\text1.txt");
while ((c=fr.read())!=-1)
{ fr1.write((char)c); }
fr1.close();
while((l = fr2.read())!=-1)
System.out.print((char)l);
fr.close();
fr2.close();
catch(IOException e)
System.out.println("Exception:"+e);
} }
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);
}
}
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()
{
}
}
Aim: Create an applet to display the color based on three scrollbars for red, green
and blue respectively.
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);
@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);
Aim: Create an applet to display the student details (name and rollno) on applet.
Pass the parameters through html file.
PROGRAM(java):
package applets;
import java.applet.*;
import java.awt.*;
<html>
<body>
</applet>
</body>
</html>
Output:
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.
import java.awt.*;
import java.util.*;
import java.awt.event.*;
}
@Override
public void windowClosing(WindowEvent e) {
dispose();
}
@Override
public void windowClosed(WindowEvent e) {
}
@Override
public void windowDeiconified(WindowEvent e) {
}
@Override
public void windowActivated(WindowEvent e) {
}
@Override
public void windowDeactivated(WindowEvent e) {
} }
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.
package awtpack;
import java.awt.*;
import java.util.*;
import java.awt.event.*;
@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
@Override
public void windowActivated(WindowEvent e) {
@Override
public void windowDeactivated(WindowEvent e) {
}
}
package awtpack;
import java.awt.*;
import java.awt.event.*;
/**
*/
Button b1,b2,b3,b4,b5;
public borderlayout1()
b1=new Button("WEST");
b2=new Button("EAST");
b3=new Button("NORTH");
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);
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));
bl.setSize(200, 300);
bl.setVisible(true);
@Override
@Override
dispose();
@Override
@Override
@Override
@Override
@Override
@Override
@Override
public void windowOpened(WindowEvent e) {
}
@Override
public void windowClosing(WindowEvent e) {
dispose(); }
@Override
public void windowClosed(WindowEvent e) {
dispose();
}
@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")
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);
add(Form);
Form.setBounds(140,60,300,30);
Form.setFont(Formfont);
add(user);
user.setBounds(100,120,80,20);
user.setFont(ft);
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);
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) {
}
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()+" ";
}
@Override
public void focusLost(FocusEvent e) {
} }
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.*;
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));
jp3.setLayout(new GridLayout(1,1));
jp4.setLayout(new GridLayout(1,1));
jp1.add(jl1);
jp2.add(jl2);
jp3.add(jl3);
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);
jlist.setSize(500,350);
jlist.setVisible(true);
Aim: Create a JTable to show name, rollno and marks of student. Add the JTable
to JScrollPane.
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();
}
}
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");
System.out.println("Server Started...");
ServerSocket serversocket= new ServerSocket(6000);
import java.io.*;
import java.net.*;
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();
}
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();
}
}
}
Aim: Write a program to perform create, insert, update and delete operations on
database using Statement.
import java.sql.*;
public class dbmsconnect {
Output:
MYSQL WORKBENCH :
Aim: Write a program to perform create, insert, update and delete operations on
database using PreparedStatement.
}
catch(Exception e){
e.getStackTrace();
}
}
}
Output:
MYSQL WORKBENCH :
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.
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>
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);