Java Record Programs:
1. WAP to find the biggest number among 3 numbers (if-else)
2. WAP to perform to mathematical operations depending on
choice(switch-case)
3. WAP to find whether the given number is PALINDROME or not (while)
4. WAP to input valid data for the bank transaction withdrawal (do-while)
5. WAP to find whether the given number is PRIME or not (for)
6. WAP to print the following format
1234
1234
1234
1234
7. WAP to print the roots of Quadratic equation (Math class)
8. WAP to search for the given number from a group of numbers using
linear search (one-dimensional arrays)
9. WAP to sort out the given list of ‘n’ numbers (arrays)
[Link] to find whether the given matrix is SYMETRIC or not (double
dimensional arrays)
[Link] to perform MATRIX-MULTIPLICATION
[Link] to find number of words, vowels, characters and consonants in a
given sentence (String class)
[Link] to explain “String” class methods
[Link] to input and output ‘n’ Strings (String class Array)
[Link] to add 2 integers or 2 float values or 3 integers (method
overloading-polymorphism)
[Link] to process an electricity bill of a customer using classes
[Link] to explain default constructor and parameterized constructor
[Link] process the result of student using MULTI-LEVEL INHERITANCE
[Link] to explain sub-class constructor (super clause)
[Link] to explain method overriding
[Link] to explain “static” methods
[Link] to implement an “interface”
[Link] to explain MULTIPLE INHERITANCE
[Link] for multiple catch statements (Exception handling)
[Link] for user-defined exception
[Link] for Thread class methods
[Link] the steps and programs to create user-defined packages
[Link] to create a TEXT file
[Link] to display the contents of a TEXT file
[Link] to create a student file
[Link] to process the student file
[Link] to Create a Java Swing program to display components using
GridLayout.
[Link] a Swing application that demonstrates CardLayout and switches
between cards using a button.
[Link] a Swing program to handle a button click event using
ActionListener.
[Link] a Java Swing program to handle mouse events using
MouseListener.