Skip to main content
JAVA Sem 5 Practicals
- Install JDK, write a simple “Hello World” or similar java program, compilation, debugging, executing using java compiler and interpreter.
- Write a program in Java to generate first n prime numbers.
- Write a program in Java to find maximum of three numbers using conditional operator
- Write a program in Java to find second maximum of n numbers without using arrays
- Write a program in Java to reverse the digits of a number using while loop
- Write a program in Java to convert number into words & print it
- Write programs in Java to use Wrapper class of each primitive data types
- Write a program in Java to multiply two matrix
- Write a static block which will be executed before main( ) method in a class.
- Write a program in Java to demonstrate use of this keyword. Check whether this can access the private members of the class or not.
- Write
 a program in Java to develop overloaded constructor. Also develop the 
copy constructor to create a new object with the state of the existing 
object.
- Write
 a program in Java to demonstrate the use of private constructor and 
also write a method which will count the number of instances created 
using default constructor only.
- Write
 a program in Java to demonstrate the use of 'final' keyword in the 
field declaration. How it is accessed using the objects.
- Develop
 minimum 4 program based on variation in methods i.e. passing by value, 
passing by reference, returning values and returning objects from 
methods.
- Write a program in Java to demonstrate single inheritance, multilevel inheritance and hierarchical inheritance.
- Create a class to find out whether the given year is leap year or not. (Use inheritance for this program)
- Write an application that illustrates how to access a hidden variable. Class A declares a static variable x. The class B extends A and declares an instance variable x. display( ) method in B displays both of these variables.
- Write a program in Java in which a subclass constructor invokes the constructor of the super class and instantiate the values.
- Write
 a program that illustrates interface inheritance. Interface P12 
inherits from both P1 and P2. Each interface declares one constant and 
one method. The class Q implements P12. Instantiate Q and invoke each of
 its methods. Each method displays one of the constants.
- Write
 an application that illustrates method overriding in the same package 
and different packages. Also demonstrate accessibility rules in inside 
and outside packages.
- Describe
 abstract class called Shape which has three subclasses say Triangle, 
Rectangle, Circle. Define one method area()in the abstract class and 
override this area() in these three subclasses to calculate for specific
 object i.e. area() of Triangle subclass should calculate area of 
triangle etc. Same for Rectangle and Circle
- Write a program in Java to demonstrate implementation of multiple inheritance using interfaces.
- Write a program in Java to demonstrate use of final class.
- Write a program in Java to develop user defined exception for 'Divide by Zero' error.
- Write a program in Java to demonstrate multiple try block and multiple catch exception
- Write
 an small application in Java to develop Banking Application in which 
user deposits the amount Rs 1000.00 and then start withdrawing of Rs 
400.00, Rs 300.00 and it throws exception "Not Sufficient Fund" when 
user withdraws Rs. 500 thereafter.
- Write
 a program that executes two threads. One thread displays “Thread1” 
every 2,000 milliseconds, and the other displays “Thread2” every 4,000 
milliseconds. Create the threads by extending the Thread class
- Write
 a program that executes two threads. One thread will print the even 
numbers and the another thread will print odd numbers from 1 to 50.
- Write
 a program in Java to demonstrate use of synchronization of threads when
 multiple threads are trying to update common variable.
- Write a program in Java to create, write, modify, read operations on a Text file.
 
 
 
 
 
 
 
  
 
 
 
 
Comments
Post a Comment