CHAITANYA BHARATHI INSTITUTE OF TECHNOLOGY (A)
Object Oriented Programming Lab using Java - MCA II SEMESTER-2020-2021
0%
Previous
Course data
General
Announcements
Topic 1
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210524-3-Basic Lab Programs using Variables and Control structures (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210525-3-Basic Lab Programs using Variables and Control structures (Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210531-6-Programs on Arrays(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210601-6-Programs on Arrays(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210607-9-Programs on Control Statements(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210608-9-Programs on Control Statements(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210614-12-Programs on ClassesConstructors(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210615-12-Programs on ClassesConstructor(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210621-15-Constructors & Inheritance (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210622-15-Constructors & Inhertance (Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210628-18-Interfaces and Packages (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210629-18-Interfaces and Packages (Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210705-21-Revision for last six weeks(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210706-21-Revision for last six weeks(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210719-24-Mid-1 Lab Exam(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210720-24-Mid-1 Lab Exam(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210726-27-Exception Handling and Threads(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210727-27-Exception Handling and Threads(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210803-30-Enum,Primitive wrappes,Strings(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210809-30-Enum,Primitive wrappes,Strings(Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210809-30-StringBuffer Class and Files (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210810-33-StringBuffer Class and Files (Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210816-33-Reading and Writing of Files (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210817-36-Reading and Writing of Files(Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210823-36-Applets and AWT Event Handling (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210824-39-Applets and AWT Event Handling (Batch-II)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210830-39-Mid-2 Lab Examination (Batch-I)
AY2021-PG-SEM-2-MCA-20MCC112-CGN-20210903-42-Lab Mid-2 Examination(Batch-II)
Java Programs after execution (including outputs) to be uploaded by students
1) Write a Java program to display Largest and Smallest numbers of the given three numbers.
2) Write a Java program to check whether a number is Odd or even.
3) Write a Java program to check whether a number is Prime or not.
4) Write a Java program to compute the factorial of a given number.
5) Write a Java program to check whether a given number is Palindrome or not.
6) Write a Java program to check whether a given number is a perfect square or not.
7) Write a Java program to check whether a given number is an Armstrong number or not.
8) Write a Java program to display sum of first n natural numbers.
9) Write a Java program to display first ten numbers in the Fibonacci Series.
10) Write a Java Program to display each and every month name and corresponding days in a calendar year.
11) Write a Java Program to find a user given element using Linear Search.
12) Write a Java Program to display a Multiplication table.
13) Write a Java Program to display Multiplication tables using user desired range.
14) Write a Java Program to compute Matrix adding for two matrices.
15) Write a Java program to identify whether a number is perfect number or not.
16) Write a Java program to display prime numbers with in the given range of numbers.
17) Write a Java program to sort an Array of elements using Bubble sort.
18) Write a Java program to find a user given element using Binary Search.
19) Write a Java Program for Matrix Multiplication.
20) Write a Java program to compute addition and multiplication of any two complex numbers.
21) Write a Java program to find the Greatest Common Divisors of any two numbers.
22) Write a java program to display the roots of a Quadratic equation.
23) Write a java program to display the default values of all primitive data types.
24) Write a java program to illustrate scope, lifetime and compatibility of variables.
25) Write a java program to find the sum of first 'n' natural numbers using for-each loop.
26) Write a java program that shows the ways to create instances (objects) of a class. Also print the class data using the created objects.
27) Write a java program to display the Student details using method and by using multiple classes.
28) Write a java program to compute the volume of a Cube using method return type and formal parameters.
29) Write a java program that uses multiple constructors of Box to compute Volume of a Box.
30) Write a java program that passes Object as a parameter and return type.
31) Write a java program that specifies the purposes of 'this' keyword to print the details of an object.
32) Write a java program to illustrate the concept of static and also specify how to access a static and non-static member function.
33) Write a java program to find out the Factorial of a number using Recursion.
34) Write a java program that shows the Single Inheritance concept.
35) Write a java program to illustrate the Overloading and Overriding compute Volume of a Box.
36) Write a java program to compute an Area of Square and Rectangle using hierarchical inheritance.
37) Write a java program that calls the desired super class constructor using super.
38) Write a java program to find out the Area of Square and Rectangle using super keyword.
39) Write a java program that illustrates the working of 'final' keyword.
40) Write a java program to implement multilevel inheritance to compute volume of a cuboid.
41) Write a java program that exhibits Multiple Inheritance using interfaces.
42) Write a java program that shows the nested interfaces.
43) Write a Java Program to compute total marks and Percentage of three subject marks using multiple interfaces.
44) Write a Java program that computes area of a Square and Rectangle using abstract class and interface.
45) Write a Java Program to compute volume using static method of an interface and also show the working of a default method of an Interface.
46) Write a java program that describes the Intra package level access of variables.
47) Write a java program that shows the Inter package level access of variables.
48) Write a Java program that shows the working of try, catch, finally and throw in Exception Handling.
49) Write a Java program for a user-defined exception.
50) Write a Java program that shows the basic Thread class features.
51) Write a Java program for creating threads using Runnable interface.
52) Write a Java program for creating threads using Thread class.
53) Write a Java program for Synchronization of threads using synchronization of methods.
54) Write a Java program for Synchronization of threads using synchronized statements / block.
55) Write a Java program for the child threads to complete their execution in-prior to the main thread execution.
56) Write a Java program that shows the working of suspend() and resume() methods in multithreading.
57) Write a Java program for working of Enumerations.
58) Write a Java program that shows the using of Primitive type wrappers. Also specify the concept of auto-boxing and auto-unboxing.
59) Write a Java program for creation of String objects using different type of String class constructors.
60) Write a Java program for String extraction and comparison operations using String class built-in methods.
61) Write a Java program for String modification and searching operations using String class built-in methods.
62) Write a Java program that describes StringBuffer constructors with the help of length(), capacity(), ensureCapacity() and setLength() methods.
63) Write a Java program for StringBuffer class data manipulation methods that shows mutability.
64) Write a Java program that shows working of annotations.
65) Write a java program for File class attributes.
66) Write a Java program to count number of files and sub-directories in a directory.
67) Write a Java program to identify each and every file is a sub-directory or flat file.
68) Write a Java program to display the list of a specific extension files that are stored in a File array object.
69) Write a Java program that specifies reading and writing of data into / from a file using FileInputStream and FileOutputStream classes.
70) Write a Java program that specifies reading and writing of primitive data into / from a file using DataInputStream and DataOutputStream classes.
71) Write a Java program that specifies reading and writing of data into / from a file using BufferedInputStream and BufferedOutputStream classes.
72) Write a Java program that specifies reading and writing of data into / from a file using FileReader and FileWriter classes.
73) Write a Java program that specifies reading and writing of data into / from a file using BufferedWriter and BufferedReaderclasses.
74) Write a Java program that specifies reading and writing of data into / from a file using PrintWriter and BufferedReader classes.
75) Write a Java program that shows the working of Applet class lifecycle methods.
76) Write a Java program to compute Arithmetic operations by passing two parameters in an Applet.
77) Write a Java program for Event handling that uses a Frame class.
78) Write a Java program for Event handling that uses an Applet class.
79) Write a Java program to add various components and corresponding listener interfaces to an Applet window.
80) Write a Java program that shows the working of ArrayList class.
81) Write a Java program to handle collections using LinkedList class.
82) Write a Java program to print Key/value pairs in ascending order of Keys using TreeMap class.
Topic 3
Program Number 01 to 09
Program Number 10 to 14
Program Number 15 to 21
Program Number 22 to 31
Program Number 32 to 40
Program Number 41 to 47
Program Number 48 to 56
Program Number 57 to 61
Program Number 62 to 68
Program Number 69 to 74
Program Number 75 to 79
Program Number 80 to 82
LAB Mid-I Examinations
OOPJ Lab Mid-I Examination (Batch-I) - 19/07/2021
Programs for Lab Mid-1 (Batch-II) 20072021
Lab Mid-II Examinations
Programs for Lab Mid-2 (Batch-I) 30082021
Programs for Lab Mid-2 (Batch-II) 03092021
Next
CHAITANYA BHARATHI INSTITUTE OF TECHNOLOGY (A)
Side panel
Log in
Username
Password
Remember username
Forgot Password?
Log in
Object Oriented Programming Lab using Java - MCA II SEMESTER-2020-2021
Home
Skip to main content
Course info
Home
Courses
MCA
AY 2020 - 2021
MCA II Semester 2020-2021
Object Oriented Programming Lab using Java - MCA II SEMESTER-2020-2021
Summary
Object Oriented Programming Lab using Java - MCA II SEMESTER-2020-2021
Object Oriented Programming Lab using Java - MCA II SEMESTER-2020-2021
Teacher:
Mr. CNVBR Sri Gowrinath Assistant Professor
Teacher:
Mr. Ramesh Ponnala Assistant Professor
Skill Level
:
Beginner