|
12 | 12 |
|
13 | 13 | ### List of Basic Programs: |
14 | 14 |
|
15 | | -| S.No. | Title | Description | Method | |
16 | | -| ----- | :----------------------------------------------------------- | ------------------------------------------------------------ | ------------------ | |
17 | | -| 1 | [Hello World](/Basic-Java/HelloWorld.java) | A simple hello world program in java. | main method | |
18 | | -| 2 | [Algebraic Operations](/Basic-Java/AlgebraicOperations.java) | Addition, Subtraction, Multiplication, Division Program. | if/else | |
19 | | -| 3 | [Algebraic Operations](/Basic-Java/AlgrebraicOperationsSwitchCase.java) | Addition, Subtraction, Multiplication, Division Program. | switch/case | |
20 | | -| 4 | [Even - Odd Number Checker](/Basic-Java/EvenOdd.java) | A Program to check if the entered number is Even or Odd. | Modulus | |
21 | | -| 5 | [Positive Negative Number Checker](/Basic-Java/PositiveNegative.java) | A Program to check if the entered number is Positive or Negative. | if/else | |
22 | | -| 6 | [Calculate Average of numbers](/Basic-Java/CalculateAverageWithArray.java) | A Program to calculate average of numbers using Array. | Array | |
23 | | -| 7 | [Reversing a Number](/Basic-Java/ReverseNumber.java) | A Simple Program to reverse a number | String | |
24 | | -| 8 | [Binary Validation](/Basic-Java/ValidateBinary.java) | A Program which checks if the Input String is a Binary Number or not | Modulus | |
25 | | -| 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 | |
26 | | -| 10 | [ASCII Value Of Character](/Basic-Java/AsciiOfCharacter.java) | A Program to find ASCII Value of a Character entered. | TypeCasting | |
| 15 | +| S.No. | Title | Description | Method | |
| 16 | +| ----- | :----------------------------------------------------------- | ------------------------------------------------------------ | ---------------------- | |
| 17 | +| 1 | [Hello World](/Basic-Java/HelloWorld.java) | A simple hello world program in java. | main method | |
| 18 | +| 2 | [Algebraic Operations](/Basic-Java/AlgebraicOperations.java) | Addition, Subtraction, Multiplication, Division Program. | if/else | |
| 19 | +| 3 | [Algebraic Operations](/Basic-Java/AlgrebraicOperationsSwitchCase.java) | Addition, Subtraction, Multiplication, Division Program. | switch/case | |
| 20 | +| 4 | [Even - Odd Number Checker](/Basic-Java/EvenOdd.java) | A Program to check if the entered number is Even or Odd. | Modulus | |
| 21 | +| 5 | [Positive Negative Number Checker](/Basic-Java/PositiveNegative.java) | A Program to check if the entered number is Positive or Negative. | if/else | |
| 22 | +| 6 | [Calculate Average of numbers](/Basic-Java/CalculateAverageWithArray.java) | A Program to calculate average of numbers using Array. | Array | |
| 23 | +| 7 | [Reversing a Number](/Basic-Java/ReverseNumber.java) | A Simple Program to reverse a number. | String | |
| 24 | +| 8 | [Binary Validation](/Basic-Java/ValidateBinary.java) | A Program which checks if the Input String is a Binary Number or not. | Modulus | |
| 25 | +| 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 | |
| 26 | +| 10 | [ASCII Value Of Character](/Basic-Java/AsciiOfCharacter.java) | A Program to find ASCII Value of a Character entered. | TypeCasting | |
| 27 | +| 11 | [Generate Random Number](/Basic-Java/RandomNumberGeneration.java) | A Program to generate Random Number, Also to generate Random Number between a Range. | Math.random() function | |
27 | 28 |
|
28 | 29 | ### List of Other Programs: |
29 | 30 |
|
30 | 31 | | S.No. | Title | Description | Method | |
31 | 32 | | ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | -------------------------------------------- | |
32 | | -| 1 | [Matrix Multiplication](/Other-Java-Programs/MatrixMultiplication.java) | A Program to perform Matrix Multiplication | 2-D Array | |
33 | | -| 2 | [Matrix Addition](/Other-Java-Programs/MatrixAddition.java) | A Program to perform Matrix Addition | 2-D Array | |
| 33 | +| 1 | [Matrix Multiplication](/Other-Java-Programs/MatrixMultiplication.java) | A Program to perform Matrix Multiplication. | 2-D Array | |
| 34 | +| 2 | [Matrix Addition](/Other-Java-Programs/MatrixAddition.java) | A Program to perform Matrix Addition. | 2-D Array | |
34 | 35 | | 3 | [Binary to Decimal Conversion](/Other-Java-Programs/BinaryToDecimal.java) | A Program to covert Input Binary Number to Decimal. | while loop | |
35 | 36 | | 4 | [Anagram Checker](/Other-Java-Programs/Anagram.java) | A Program to check if the entered Strings are anagram or not. | if/else, for loops, Array, String Operations | |
36 | 37 | | 5 | [Remove Word From String](/Other-Java-Programs/RemoveWordFromString.java) | A Program to remove specific word from String. | if/else, String Operations | |
37 | | -| 6 | [Finding Missing Number](/Other-Java-Programs/FindingMissingNumberInArray.java) | Given an array C of size N-1 and given that there are numbers from 1 to N with one element missing, the missing number is to be found. | | |
| 38 | +| 6 | [Finding Missing Number](/Other-Java-Programs/FindingMissingNumberInArray.java) | Given an array C of size N-1 and given that there are numbers from 1 to N with one element missing, the missing number is to be found. | Array Operations | |
38 | 39 |
|
39 | 40 | ### List of Cryptography Algorithms: |
40 | 41 |
|
|
0 commit comments