The document contains an index of 13 experiments performed in Java programming from December 2023 to March 2024. Each entry includes the date of performance, name of the experiment, and date of submission. The experiments cover topics such as palindrome strings, array sorting, interest calculation using constructors, wrapper and string classes, inheritance in a calculator program, exception handling, immutable classes, abstract classes, thread synchronization, and event handling.
The document contains an index of 13 experiments performed in Java programming from December 2023 to March 2024. Each entry includes the date of performance, name of the experiment, and date of submission. The experiments cover topics such as palindrome strings, array sorting, interest calculation using constructors, wrapper and string classes, inheritance in a calculator program, exception handling, immutable classes, abstract classes, thread synchronization, and event handling.
performance Submission 1 13/12/2023 Write A Program in Java to show a string 20/12/2023 is a palindrome.
2 20/12/2023 Write A Program in Java to sort any given 10/01/2024
array
3 10/01/2024 Write A Program in Java to calculate 17/01/2024
Simple Interest using constructors
4 17/01/2024 Write A Program in Java to calculate 24/01/2024
Compound Interest using constructors
5 24/01/2024 Write A Program in Java to show the use 31/01/2024
of Wrapper, vector, String Class
6 31/01/2024 To write a program to design a simple 07/02/2024
calculator using inheritance.
7 07/02/2024 a.)Write a program in java to increment 21/02/2024
the employee salaries on the basis of their designation (Manager- 5000, General Manager-10000, CEO-20000, worker-2000). Use employee name, id, designation, salary as data member and inc_sal as member function. b.) Write a program in java with class bank, containing data member: Name of Depositor, A/c type, Type of A/C, Balance amount. Member function: To assign initial value, To deposit an amount, to withdraw an amount after checking the balance (which should be greater than Rs. 500), To display name & balance. 8 21/02/2024 Write a program to create interface 28/02/2024 employee which inherits 2 class fulltime and parttime 9 28/02/2024 Write a program to make a calculator 06/03/2024 using concept of package
10 06/03/2024 Write a java program to show exception 13/03/2024
handling using try, catch, throw, throws and finally
11 13/03/2024 a.) Write a code to show use immutable 20/03/2024
class, finalize keyword, final keyword. b.) Write a code to show use of abstract class and abstract method in java. 12.a) 13/03/2024 a.) Write a program that accepts three 20/03/2024 numbers from the user and prints "increasing" if the numbers are in increasing order, "decreasing" if the numbers are in decreasing order, and "Neither increasing or decreasing order" otherwise. b.) Write a program that provides a user defined priority to a given thread also use concept of multiple threads. 12.b) 20/03/2024 Write a java program to show thread 27/03/2024 synchronization.
13 20/03/2024 a.)Write a code in java to show Mouse 27/03/2024
action Listener. b.)Write a code in java to show Event handling.