Practical List: Charotar University of Science & Tchnology
Practical List: Charotar University of Science & Tchnology
Practical List
No Aim of the Practical
Part - 1
1 Introduction to Object Oriented Concepts, comparison of Java with other object oriented
programming languages. Introduction to JDK, JRE, JVM, javadoc, command line
argument.
Introduction to Eclipse or Netbean IDE and Console Programming.
THEORY:
Class: a class is a user defined data type which holds its own data members and
member functions, which can be accessed and used by creating an instance of that
class.
Object: A java object is a combination of data and procedures working on the
available data. An object as a state and behavior.
Abstraction: Hiding internal details and showing functionality is known as
abstraction.
Polymorphism: Mechanism of wrapping a data and code acing on the data as a
single unit is called polymorphism.
Inheritance: It is a mechanism in which one object acquires all the properties and
behaviors of a parent object.
1
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
Mainly used for C++ is mainly used for system Java is mainly used for
programming. application programming. It
is widely used in window,
web-based, enterprise and
mobile applications.
Design Goal C++ was designed for systems Java was designed and
and applications created as an interpreter for
programming. It was an printing systems but later
extension of C programming extended as a support
language. network computing. It was
designed with a goal of
being easy to use and
accessible to a broader
audience.
Goto C++ supports Java doesn't support the goto
the goto statement. statement.
Multiple C++ supports multiple Java doesn't support
inheritance inheritance. multiple inheritance through
class. It can be achieved
by interfaces in java.
Operator C++ supports operator Java doesn't support
Overloading overloading. operator overloading.
Pointers C++ supports pointers. You Java supports pointer
can write pointer program in internally. However, you
C++. can't write the pointer
program in java. It means
java has restricted pointer
support in java.
Compiler and C++ uses compiler only. C++ Java uses compiler and
Interpreter is compiled and run using the interpreter both. Java source
compiler which converts code is converted into
source code into machine code bytecode at compilation
so, C++ is platform dependent. time. The interpreter
executes this bytecode at
runtime and produces
output. Java is interpreted
that is why it is platform
independent.
Call by Value and C++ supports both call by Java supports call by value
Call by reference value and call by reference. only. There is no call by
reference in java.
Structure and C++ supports structures and Java doesn't support
Union unions. structures and unions.
Thread Support C++ doesn't have built-in Java has built-
support for threads. It relies on in thread support.
third-party libraries for thread
2
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
support.
Documentation C++ doesn't support Java supports documentation
comment documentation comment. comment (/** ... */) to create
documentation for java
source code.
Virtual Keyword C++ supports virtual keyword Java has no virtual keyword.
so that we can decide whether We can override all non-
or not override a function. static methods by default. In
other words, non-static
methods are virtual by
default.
unsigned right shift C++ doesn't support >>> Java supports unsigned right
>>> operator. shift >>> operator that fills
zero at the top for the
negative numbers. For
positive numbers, it works
same like >> operator.
Inheritance Tree C++ creates a new inheritance Java uses a single
tree always. inheritance tree always
because all classes are the
child of Object class in java.
The object class is the root
of the inheritance tree in
java.
Hardware C++ is nearer to hardware. Java is not so interactive
with hardware.
Object-oriented C++ is an object-oriented Java is also an object-
language. However, in C oriented language. However,
language, single root hierarchy everything (except
is not possible. fundamental types) is an
object in Java. It is a single
root hierarchy as everything
gets derived from
java.lang.Object.
JVM : The JVM is the Java platform component that executes programs.
JRE : The JRE is the on-disk part of Java that creates the JVM.
JDK : The JDK allows developers to create Java programs that can be
executed and run by the JVM and JRE.
Javadoc :Javadoc is a documentation tool which defines a standard format for
such comments, and which can HTML files to view the documentation from a web
broswer.
Command Line Argument : Command line argument in Java. The command line
argument is the argument passed to a program at the time when you run it. To
access the command-line argument inside a java program is quite easy, they are
stored as string in String array passed to the args parameter of main() method.
3
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION:
In this practical we learned about different Object Oriented concepts, difference between
Java and other languages. We also learned about the JDK, JVM,JRE and commands to run
java program on command prompt.
4
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
2 Given a string, return a string made of the first 2 chars (if present), however include first
char only if it is 'o' and include the second only if it is 'z', so "ozymandias" yields "oz".
PROGRAM CODE :
import java.util.Scanner;
class Two
{ public static void starOz(String s)
{
String str;
str=s;
String pri;
if((str.charAt(0)=='o' && str.charAt(1)=='z'))
{ pri="oz";
System.out.println(pri);
}
else if((str.charAt(0)=='o'))
{ pri="o";
System.out.println(pri);
}
else if((str.charAt(1)=='z'))
{ pri="z";
System.out.println(pri);
}
}
public static void main(String args[])
{ Scanner input=new Scanner(System.in);
System.out.println("Enter the String :");
String str=input.nextLine();
starOz(str);
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
5
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
6
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
3 Given two non-negative int values, return true if they have the same last digit, such as
with 27 and 57. Note that the % "mod" operator computes remainders, so 17 % 10 is 7.
PROGRAM CODE :
import java.util.Scanner;
class Three
{ public static void lastDigit(int a,int b)
{ int x,y;
x=a; y=b;
int p1,p2;
p1=x%10;
p2=y%10;
if(p1==p2)
{ System.out.println("true");}
else
{ System.out.println("false");}
}
public static void main(String args[])
{ Scanner input=new Scanner(System.in);
System.out.println("Enter first Integer :");
int n1=input.nextInt();
System.out.println("Enter second Integer :");
int n2=input.nextInt();
lastDigit(n1,n2);
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
OUTPUT :
7
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
4 Given an array of ints, return true if the sequence of numbers 1, 2, 3 appears in the array
somewhere.
PROGRAM CODE :
import java.*;
import java.util.Scanner;
class Four
{ public static void main(String[] args)
{ intsize,i;
boolean result = true;
Scanner s = new Scanner(System.in);
System.out.println("Enter size : ");
size = s.nextInt();
int[] arr = new int[size];
System.out.println("Enter array : ");
for(i=0;i<size;i++)
{ arr[i] = s.nextInt();
}
for(i=0;i<size-2;i++)
{ if((arr[i]==1) && (arr[i+1]==2) && (arr[i+2]==3))
result = true;
else
result = false;
}
System.out.println(result);
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
8
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt that how the array can we assign in the java.
5 Given 2 strings, a and b, return the number of the positions where they contain the same
length 2 substring. So "xxcaazz" and "xxbaaz" yields 3, since the "xx", "aa", and "az"
substrings appear in the same place in both strings.
PROGRAM CODE :
import java.util.*;
class Five
{ public static int stringMatch(String a, String b)
{ int len = Math.min(a.length(), b.length());
int count = 0;
for (int i=0; i<len-1; i++)
{ String aSub = a.substring(i, i+2);
String bSub = b.substring(i, i+2);
if(aSub.equals(bSub))
count++;}
System.out.println(count);return count;
}
public static void main(String[] args)
{ Scanner input=new Scanner(System.in);
System.out.println("Enter first String :");
String str1=input.nextLine();
System.out.println("Enter second String :");
String str2=input.nextLine();
stringMatch(str1,str2);
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");}
}
OUTPUT :
9
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
PROGRAM CODE :
import java.util.*;
public class Six
{ public static void main(String[] args)
{ Scanner s=new Scanner(System.in);
System.out.println("Enter weight in Pounds : ");
double weight=s.nextDouble();
System.out.println("Enter height in Inches : ");
double height=s.nextDouble();
weight=(0.45359237)*weight;
height=(0.0254)*height;
double BMI=weight/(height*height);
10
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
if(BMI<18.5)
System.out.println("Underweight");
if(18.5<=BMI && BMI<25.0)
System.out.println("Normal");
if(25.0<=BMI && BMI<30.0)
System.out.println("Overweight");
if(30.0<=BMI)
System.out.println("Obese");
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
OUTPUT :
CONCLUSION :
In this practical we find the BMI having weight converting it from kg to pounds and
height from meter to inches.
11
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
7 Lottery
The lottery program involves generating random numbers, comparing digits, and using
Boolean operators.
Suppose you want to develop a program to play lottery. The program randomly generates
a lottery of a two-digit number, prompts the user to enter a two-digit number, and
determines whether the user wins according to the following rules:
1. If the user input matches the lottery number in the exact order, the award is $10,000.
2. If all digits in the user input match all digits in the lottery number, the award is $3,000.
3. If one digit in the user input matches a digit in the lottery number, the award is $1,000.
Note that the digits of a two-digit number may be 0. If a number is less than 10, we
assume the number is preceded by a 0 to form a two-digit number. For example, number 8
is treated as 08 and number 0 is treated as 00 in the program. Listing 3.8 gives the
complete program.
PROGRAM CODE :
import java.util.*;
import java.util.Random;
class Seven
{ public static void main(String [] args)
{ Scanner s=new Scanner(System.in);
Random r=new Random();
int a,cnt=0,b;
System.out.println("Enter your lottery pick (2 digits)");
a=s.nextInt();
b=r.nextInt(100);
12
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
if(a==b)
System.out.println("Exact match: you win $10,000");
else if(b%10 == a%10 || b/10 == a%10)
System.out.println("Match one digit: you win $3,000");
else if(b/10 == a%10 || b%10 == a/10 )
System.out.println("Match one digit: you win $3,000");
else if (b%10 == a%10 || b%10 == a/10 )
System.out.println("Match one digit: you win $3,000");
else if(b%10 == a%10 && b/10 == a%10)
System.out.println("Match one digit: you win $1,000");
else if(b/10 == a%10 && b%10 == a/10 )
System.out.println("Match one digit: you win $1,000");
else if (b%10 == a%10 && b%10 == a/10 )
System.out.println("Match one digit: you win $1,000");
else
System.out.println("Better luck next time");
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
OUTPUT :
CONCLUSION :
13
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
8 The problem is to write a program that will grade multiple-choice tests. Assume there are
eight students and ten questions, and the answers are stored in a two-dimensional array.
Each row records a student’s answers to the questions, as shown in the following array.
Students’ Answers to the Questions:
PROGRAM CODE :
import java.util.Scanner;
public class Eight
{ public static void main (String[] args)
{ Scanner scan = new Scanner (System.in);
14
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
15
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.Scanner;
class Nine
{ public static void main(String []args)
{ Scanner scnr = new Scanner(System.in);
int[][] sodoku = {{5,3,4,6,7,8,9,1,2}, {6,7,2,1,9,5,3,4,8},
{1,9,8,3,4,2,5,6,7}, {8,5,9,7,6,1,4,2,3}, {4,2,6,8,5,3,7,9,1}, {7,1,3,9,2,4,8,5,6},
{9,6,1,5,3,7,2,8,4}, {2,8,7,4,1,9,6,3,5}, {3,4,5,2,8,6,1,7,9}};
int[] rowsum=new int[9];
int[] colsum=new int[9];
int[] cubesum=new int[9];
int count=0;
int cnt=0;
16
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
for(int i=0;i<9;i++)
{ for(int j=0;j<9;j++)
{ System.out.print(sodoku[i][j] + " ");
}
System.out.println();
}
for(int i=0;i<9;i++)
{ for(int j=0;j<9;j++)
{ rowsum[i]+=sodoku[i][j];
}
}
for(int i=0;i<9;i++)
{ for(int j=0;j<9;j++)
{ colsum[i]+=sodoku[j][i];
}
}
for(int n=0;n<3;n++)
{ for(int i=n*3;i<(n+1)*3;i++)
{ for(int j=0;j<3;j++)
{ cubesum[n]+=sodoku[i][j];
}
}
}
for(int n=3;n<6;n++)
{ for(int i=(n-3)*3;i<(n-2)*3;i++)
{ for(int j=3;j<6;j++)
{ cubesum[n]+=sodoku[i][j];
}
}
}
for(int n=6;n<9;n++)
{ for(int i=(n-6)*3;i<(n-5)*3;i++)
{ for(int j=6;j<9;j++)
{ cubesum[n]+=sodoku[i][j];
}
}
}
for(int n=0;n<9;n++)
{ for(int j=0;j<9;j++)
{ if(sodoku[n][j]>0 && sodoku[n][j]<10)
{ for(int i=0;i<9;i++)
{ if(cubesum[i]==45 && rowsum[i]==45 &&
colsum[i]==45)
{count++;}
}
17
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
}
else
{cnt++;}
}
}
if(count==9)
{ System.out.println("Solution is correct");}
else
{ System.out.println("Solution is wrong");}
if(cnt>0)
{ System.out.println("Values are incorrect.");
}
OUTPUT :
CONCLUSION :
18
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.Scanner;
class Ten
{ public static double calculateDistance(double x1, double x2, double y1, double y2)
{ return Math.sqrt( Math.pow(y1 - x1, 2) + Math.pow(y2 - x2, 2) );
}
public static void main(String[] args)
{ Scanner scan = new Scanner (System.in);
System.out.println("Enter how many numbers you want to check: ");
int numbers = scan.nextInt();
System.out.println("Fill in the points: ");
double[][] list = new double[numbers][2];
double n1=0,n2=0,n3=0,n4=0;
list[0][0] = scan.nextDouble();
list[0][1]= scan.nextDouble();
list[1][0] = scan.nextDouble();
list[1][1]= scan.nextDouble();
double min = calculateDistance(list[0][0],list[0][1],list[1][0],list[1][1]);
for (int i = 2;i<list.length;i++)
19
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
{ list[i][0] = scan.nextDouble();
list[i][1] = scan.nextDouble();
}
for (int j=0;j<list.length;j++)
{ for(int k=j+1; k<list.length;k++)
{ if (calculateDistance(list[j][0],list[j][1],list[k][0],list[k][1]) <
min)
{ min = calculateDistance(list[j][0],list[j][1],list[k][0],list[k]
[1]);
n1 = list[j][0];
n2 = list[j][1];
n3 = list[k][0];
n4 = list[k][1]; }
}
}
System.out.println("The closest two points are " + "("+n1+" ," + n2+")"
+"("+n3+" ," + n4+ ")") ;
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");}
}
OUTPUT :
CONCLUSION :
In this practical we find the closest point from all the other points.
20
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
Part - 2
1 Design a class named Circle containing following attributes and behavior.
One double data field named radius. The default value is 1.
A no-argument constructor that creates a default circle.
A Single argument constructor that creates a Circle with the specified radius.
A method named getArea() that returns area of the Circle.
A method named getPerimeter() that returns perimeter of it.
PROGRAM CODE :
import java.util.*;
class Circle
{ double radius=0;
Circle()
{ radius=1; }
Circle(double r)
{ radius=r; }
double getArea()
{ return (3.14*radius*radius); }
double getPerimeter()
21
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
{ return (2*3.14*radius); }
OUTPUT :
CONCLUSION :
In this practical we learned about the default constructor and perameterized constructor in
java programming and calculated perimeter and area of the circle.
22
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
23
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
class account
{ private int id;
private double balance;
private static double interest;
private Date datecreated=new Date();
Scanner in=new Scanner(System.in);
public account()
{ id=0;
balance=500;
interest=7;
}
public account(int i,double bal)
{ id=i;
balance=bal;
}
public void getdata()
{ System.out.println("Enter the id:");
id=in.nextInt();
System.out.println("Enter the balance:");
balance=in.nextDouble();
}
public void putdata()
{ System.out.println("ID:"+id);
System.out.println("balance:"+balance);
}
public void date()
{ System.out.println("Date:"+datecreated);
}
public double getMonthlyInterestRate()
{ System.out.println("Enter the Monthly interest rate:");
double monthInterestRate=in.nextDouble();
return monthInterestRate;
}
public double getMonthlyInterest(double inte)
{ double MonthInterest=(balance*inte)/100;
return MonthInterest;
}
public void withdraw()
{ System.out.println("Enter the withdrawal ammount:");
double wid=in.nextDouble();
balance=balance-wid;
System.out.println("After withdrawal balance:"+balance);
24
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
}
public void deposit()
{ System.out.println("Enter the deposit ammount:");
double add=in.nextDouble();
balance=balance+add;
System.out.println("After deposite balance:"+balance);
}
OUTPUT :
CONCLUSION :
In this practical we learnt about default constructor and put default value in the
25
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
26
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.Date;
import java.util.Scanner;
public class atm
{ public static void main(String[] args)
{ main();
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
public static void main()
{ Scanner input = new Scanner(System.in);
System.out.println("Enter an id: ");
int id = input.nextInt();
Account [] accounts = new Account[10];
27
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
}
else if(enterchoice == 3)
{ System.out.println("Enter an amount to deposit ");
double amount = input.nextDouble();
accounts[index].deposit(amount);
main();
}
else if(enterchoice == 4)
{ System.out.println("Enter an amount to create account ");
double amount = input.nextDouble();
accounts[index].create_ac(amount);
main();
}
else if(enterchoice == 5)
{ System.out.println("Enter an amount to money transfer ");
double amount = input.nextDouble();
accounts[index].money_transfer(amount);
main();
}
else if(enterchoice ==6)
{ main();
}
}
else
{ System.out.println("Please enter a correct id (0-9) : ");
main();
}
}
class Account
{ private int id = 0;
private double balance = 0;
private double withdraw = 0;
private double deposit = 0;
private double create_ac = 0;
private double money_transfer = 0;
private double exist = 0;
Account(){
}
Account(int id, double balance)
{ this.id = id;
this.balance = balance;
}
public int getid()
{ return this.id;
}
public void setid(int newid)
{ id = newid;
}
public double getbalance()
28
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
{ return this.balance;
}
public void withdraw(double amount)
{ balance = balance - amount;
}
public void deposit(double amount)
{ balance = balance + amount;
}
public void create_ac(double amount)
{ id++;
}
public void money_transfer(double amount)
{ balance = balance - amount;
}
}
OUTPUT :
CONCLUSION :
In this practical we leant about the class and object in java and used this concept in the
given program to create bank management.
29
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
class Office
{ int empNo;
String empname=new String();
double salary;
Scanner in=new Scanner(System.in);
30
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
class prac4
{ public static void main(String[] args)
{ Teaching t1=new Teaching();
t1.getvalue();
t1.setvalue();
t1.putvalue();
t1.putdata();
31
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt about inheritance in java and according to that concept
implemented one program.
32
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
class prac5
{ static int sum(int c,int d)
{ return (c+d);
}
static double sum(double c,double d)
{ return (c+d);
}
OUTPUT :
CONCLUSION :
33
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
Part-3
1 WAP that illustrate the use of interface reference. Interface Luminious Object has two
method lightOn() and lightOff(). There is one class Solid extended by 2 classes Cube and
Cone. There is one class LuminiousCone extends Cone and implements Luminoius
Interface. LumminuiousCube extends Cube and implements Luminious Interface. Create a
object of LuminiousCone and LuminousCube and use the concept of interface reference to
invoke the methods of interface.
PROGRAM CODE :
import java.util.*;
interface Luminious
{ public void lightOn();
public void lightOff();
}
class solid
{}
class Cube extends solid
{}
class Cone extends solid
{}
34
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
class Test
{ public static void main(String[] args)
{ Luminious l1=new LuminiousCube();
l1.lightOn();
l1.lightOff();
Luminious l2=new LuminiousCone();
l2.lightOn();
l2.lightOff();
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
OUTPUT :
CONCLUSION :
In this practical we learnt about interface concept in java and implementation of interface
with the class.
35
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
interface p
{ int a=1;
public void print();
}
interface p1 extends p
{ int b=2;
public void prin();
}
interface p2 extends p
{ int c=3;
public void pri();
}
interface p12 extends p1,p2
{ int d=4;
public void pr();
}
36
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt about interface concept in java and implementation of interface
with the class.
37
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
3 Create an abstract class Robot that has the concretre subclasses , RobotA, RobotB,
RobotC. Class RobotA1 extends RobotA, RobotB1 extends RobotB and RobotC1 extends
RobotC. There is interface Motion that declares 3 methods forward(), reverse() and stop(),
implemented by RobotB and RobotC. Sound interface declare method beep()
implemented by RobotA1, RobotB1 and RobotC1. Create an instance method of each
class and invoke beep() and stop() method by all objects.
PROGRAM CODE :
import java.util.*;
interface motion
{ void forward();
void reverse();
void stop();
}
interface sound
{ void beep();
}
abstract class Robot
{
}
class RobotA extends Robot
{
}
38
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
39
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
In this practical we learnt about interface concept in java and implementation of interface
with the class.
4 Write a java program to create an abstract class named Shape that contains two integers
and an empty method named printArea(). Provide three classes named Rectangle, Triangle
and Circle such that each one of the classes extends the class Shape. Each one of the
classes contain only the method printArea( ) that prints the area of the given shape.
PROGRAM CODE :
import java.util.*;
abstract class shape
{ int a,b;
public void printArea() { }
}
class Rectangle extends shape
{ public void printArea()
{ Scanner in=new Scanner(System.in);
System.out.println("Enter the length and width of Rectangle:");
40
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
a=in.nextInt();
b=in.nextInt();
System.out.println("Area of Rectangle:"+(a*b));
}
}
class Triangle extends shape
{ public void printArea()
{ Scanner in=new Scanner(System.in);
System.out.println("Enter the base and altitude of Triangle:");
a=in.nextInt();
b=in.nextInt();
System.out.println("Area of Rectangle:"+(0.5)*(a*b));
}
}
class Circle extends shape
{ public void printArea()
{ Scanner in=new Scanner(System.in);
System.out.println("Enter the radius of circle:");
a=in.nextInt();
System.out.println("Area of Rectangle:"+(2*3.14)*(a*a));
}
}
class Test
{ public static void main(String[] args)
{ Rectangle r1=new Rectangle();
r1.printArea();
Triangle t1=new Triangle();
t1.printArea();
Circle c1=new Circle();
c1.printArea();
OUTPUT :
41
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
In this practical we learnt about interface concept in java and implementation of interface
with the class.
5 Write a java program to find the details of the students eligible to enroll for the
examination ( Students, Department combinedly give the eligibility criteria for the
enrollement class) using interfaces
42
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
interface Student
{ String studentId=new String("18DCS088");
String studentName=new String("Yashashree");
String Class=new String("CSE");
void getvalue();
}
interface Department
{ String studuntId=new String("18DCS088");
double attendance=85;
void getattendance();
}
interface Exam extends Student,Department
{ void calculattendance();
}
43
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt about interface concept in java and implementation of interface
with the class.
6 Write a java program which shows importing of classes from other user define packages.
PROGRAM CODE :
package p1;
import java.util.*;
44
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt about package in java and implementation of package in java.
PROGRAM CODE :
package p2;
import p1.test;
45
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
CONCLUSION :
In this practical we learnt about package in java and implementation of package in java.
46
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
import java.util.*;
interface board
{ default void display()
{ System.out.println("Hello");
}
}
interface board1
{ default void display()
{ System.out.println("Hello1");
}
}
OUTPUT :
CONCLUSION :
In this practical we learnt about package in java and implementation of package in java.
47
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
Part-4
1 WAP to show the try - catch block to catch the different types of exception.
PROGRAM CODE :
public class Test
{ public static void main(String[] args)
{ try
{ int a=1/0;
}
catch(ArithmeticException o)
{ System.out.println("ArithmeticException!!!:Cannot / by 0");
}
try
{ int[] arr=new int[4];
arr[5]=7;
}
catch(ArrayIndexOutOfBoundsException a)
{ System.out.println("ArrayIndexOutOfBoundsException");
}
try
{ String str=null;
str.length();
}
catch(NullPointerException n)
{ System.out.println("NullPointerException:cannot assign NULL");
}
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}}
OUTPUT :
CONCLUSION :
In this practical we learned about the exception handling using try and catch block in java
program.
48
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
2 WAP to generate user defined exception using “throw” and “throws” keyword.
PROGRAM CODE :
1)
import java.util.*;
public class Test
{ void display() throws
ArithmeticException,ArrayIndexOutOfBoundsException,NullPointerException
{ String str=null;
int b=str.length();
}
public static void main(String[] args)
{ Test s1=new Test();
try
{ s1.display();
}
catch(NullPointerException n)
{ System.out.println("Cannot assign NULL value");
}
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
}
2)
class myexception extends Exception
{ int a;
myexception(int b)
{ a=b;
}
public String toString()
{ return ("hi"+a);
}
}
49
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
OUTPUT :
1)
2)
CONCLUSION :
In this practical we learned about the exception handling using throws and throw block in
java program.
50
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
3 Write a program that raises two exceptions. Specify two ‘catch’ clauses for the two
exceptions. Each ‘catch’ block handles a different type of exception. For example the
exception could be ‘ArithmeticException’ and ‘ArrayIndexOutOfBoundsException’.
Display a message in the ‘finally’ block.
PROGRAM CODE :
public class Test
{ public static void main(String[] args)
{ try
{ int a=1/0; }
catch(ArithmeticException o)
{ System.out.println("ArithmeticException!!!:Cannot / by 0"); }
try
{ int[] arr=new int[4];
arr[5]=7; }
catch(ArrayIndexOutOfBoundsException a)
{ System.out.println("ArrayIndexOutOfBoundsException"); }
try
{ String str=null;
str.length(); }
catch(NullPointerException n)
{ System.out.println("NullPointerException:cannot assign NULL");
}
finally
{ System.out.println("In the finally block after all exception has been
caught"); }
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}}
OUTPUT :
CONCLUSION :
In this practical we learned about the exception handling try catch and finally block in
51
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
java program.
Part-5
1 WAP to show how to create a file with different mode and methods of File class to find path,
directory etc.
PROGRAM CODE :
import java.io.*;
class Test
{ public static void main(String[] args)
{ File f1=new File("practise.txt");
try
{ f1.createNewFile();
if(f1.exists())
{ System.out.println("File already exists"); }
else
{ System.out.println("File created successfully"); }
String str=f1.getName();
String str1=f1.getPath();
long len=f1.length();
System.out.println("Filename:"+str+"\nPath:"+str1+"\nLength:"+len);
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
catch(IOException e)
{ System.out.println("File Exception"); } }
}
OUTPUT :
CONCLUSION :
In this practical we learned about the file handling in java and checked if file exists or not
using java program.
52
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
2 Write a program to show a tree view of files and directories under a specified drive/volume.
PROGRAM CODE :
import java.io.File;
public class Test
{ static void PrintTree(File[] arr,int index,int level)
{ if(index == arr.length)
return;
for (int i = 0; i< level; i++)
System.out.print("\t");
if(arr[index].isFile())
System.out.println(arr[index].getName());
else if(arr[index].isDirectory)
{ System.out.println("[" + arr[index].getName() + "]");
PrintTree(arr[index].listFiles(), 0, level + 1);
}
PrintTree(arr, ++index, level);
}
public static void main(String[] args)
{ String direcpath = "C:\\Users\\HP\\desktop\\java";
File directory = new File(direcpath);
System.out.println("The files included in "+direcpath+" are:-\n");
if(directory.exists() &&directory.isDirectory())
{ File arr[] = directory.listFiles();
PrintTree(arr,0,0); }
}}
OUTPUT :
53
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
In this practical we learned about java file handling and find path of directories and files
in folders.
3 Write a Java program that reads on file name from the user, then displays information about
whether the file exists, whether the file is readable, whether the file is writable, the type of file
and the length of the file in bytes?
PROGRAM CODE :
import java.io.*;
import java.lang.*;
class Test
{ public static void main(String[] args)
{ File obj=new File("Text.txt");
try
{ obj.createNewFile();
if(obj.exists())
{ System.out.println("File name:"+obj.getName());
System.out.println("Absolute
path:"+obj.getAbsolutePath());
System.out.println("Writable:"+obj.canWrite());
System.out.println("Readable:"+obj.canRead());
System.out.println("Size of file:"+obj.length());
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
}
else
{ System.out.println("File does not exist");
}
}
catch(Exception e)
{ System.out.println(e);
}
}
}
OUTPUT :
54
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
CONCLUSION :
In this practical we learned about the file handling in java and checked if file exists or not
and readable or writable and absolute path of the file using java program.
4 Write a program to transfer data from one file to another file so that if the destination file does
not exist, it is created.
PROGRAM CODE :
import java.io.*;
import java.lang.*;
class Test
{ public static void main(String[] args)
{ try
{ FileInputStream in=new FileInputStream("Text.txt");
FileOutputStream out=new FileOutputStream("Test1.txt");
int i=0;
while((i=in.read())!=-1)
{ System.out.print((char)i);
out.write(i); //will automatic covert into bytecode so no
coversion required
}
System.out.println("\nData written Successfully");
System.out.println("Name : Yashashree Patel");
System.out.println("ID : 18DCS088");
in.close();
out.close();
}
catch(Exception e)
{ System.out.println(e);
}
}
}
OUTPUT :
CONCLUSION :
In this practical we learned about the transfer the data from one file to another file using
java program.
55
DEPSTAR[CSE]
Java Programming[CE251] 18DCS088
PROGRAM CODE :
OUTPUT :
CONCLUSION :
PROGRAM CODE :
OUTPUT :
CONCLUSION :
PROGRAM CODE :
OUTPUT :
CONCLUSION :
56
DEPSTAR[CSE]