|
11 | 11 |
|
12 | 12 | ### List of Basic Programs:
|
13 | 13 |
|
14 |
| -| S.No. | Title | Description | Method | |
15 |
| -| ----- | :----------------------------------------------------------- | ------------------------------------------------------------ | ----------- | |
16 |
| -| 1 | [Hello World](/Basic-Java/HelloWorld.java) | A simple hello world program in java. | main method | |
17 |
| -| 2 | [Algebraic Operations](/Basic-Java/AlgebraicOperations.java) | Addition, Subtraction, Multiplication, Division Program. | if/else | |
18 |
| -| 3 | [Algebraic Operations](/Basic-Java/AlgrebraicOperationsSwitchCase.java) | Addition, Subtraction, Multiplication, Division Program. | switch/case | |
19 |
| -| 4 | [Even - Odd Number Checker](/Basic-Java/EvenOdd.java) | A Program to check if the entered number is Even or Odd. | Modulus | |
20 |
| -| 5 | [Positive Negative Number Checker](/Basic-Java/PositiveNegative.java) | A Program to check if the entered number is Positive or Negative. | if/else | |
21 |
| -| 6 | [Calculate Average of numbers](/Basic-Java/CalculateAverageWithArray.java) | A Program to calculate average of numbers using Array. | Array | |
22 |
| -| 7 | [Reversing a Number](/Basic-Java/ReverseNumber.java) | A Simple Program to reverse a number | String | |
23 |
| -| 8 | [Binary Validation](/Basic-Java/ValidateBinary.java) | A Program which checks if the Input String is a Binary Number or not | Modulus | |
| 14 | +| S.No. | Title | Description | Method | |
| 15 | +| ----- | :----------------------------------------------------------- | ------------------------------------------------------------ | ------------------ | |
| 16 | +| 1 | [Hello World](/Basic-Java/HelloWorld.java) | A simple hello world program in java. | main method | |
| 17 | +| 2 | [Algebraic Operations](/Basic-Java/AlgebraicOperations.java) | Addition, Subtraction, Multiplication, Division Program. | if/else | |
| 18 | +| 3 | [Algebraic Operations](/Basic-Java/AlgrebraicOperationsSwitchCase.java) | Addition, Subtraction, Multiplication, Division Program. | switch/case | |
| 19 | +| 4 | [Even - Odd Number Checker](/Basic-Java/EvenOdd.java) | A Program to check if the entered number is Even or Odd. | Modulus | |
| 20 | +| 5 | [Positive Negative Number Checker](/Basic-Java/PositiveNegative.java) | A Program to check if the entered number is Positive or Negative. | if/else | |
| 21 | +| 6 | [Calculate Average of numbers](/Basic-Java/CalculateAverageWithArray.java) | A Program to calculate average of numbers using Array. | Array | |
| 22 | +| 7 | [Reversing a Number](/Basic-Java/ReverseNumber.java) | A Simple Program to reverse a number | String | |
| 23 | +| 8 | [Binary Validation](/Basic-Java/ValidateBinary.java) | A Program which checks if the Input String is a Binary Number or not | Modulus | |
| 24 | +| 9 | [Prime Number Checker](/Basic-Java/PrimeNumberChecker.java) | A Program to check if the entered number is a Prime Number or not. | if/else, for loops | |
24 | 25 |
|
25 | 26 | ### List of Other Programs:
|
26 | 27 |
|
|
0 commit comments