|
120 | 120 | 10. Find sum of each row and each column of the Matrix. [[Solution]](InterviewPrograms/src/com/java/matrix/RowSumColumnSum.java)
|
121 | 121 |
|
122 | 122 | # Print the Series
|
123 |
| -1. Write the Java Program to print the following series (EVEN number series) [[Solution]](InterviewPrograms/src/com/java/series/EvenNumberSeries.java) |
| 123 | +1. Write the Java Program to print the following series ***EVEN number Series*** [[Solution]](InterviewPrograms/src/com/java/series/EvenNumberSeries.java) |
124 | 124 | ```
|
125 | 125 | 2 4 6 8 10 12 14 16 .....
|
126 | 126 | ```
|
127 |
| -2. Write the Java Program to print the following series (ODD number series) [[Solution]](InterviewPrograms/src/com/java/series/OddNumberSeries.java) |
| 127 | +2. Write the Java Program to print the following series ***ODD number Series*** [[Solution]](InterviewPrograms/src/com/java/series/OddNumberSeries.java) |
128 | 128 | ```
|
129 | 129 | 1 3 5 7 9 11 13 ....
|
130 | 130 | ```
|
131 |
| -3. Write the Java Program to print the following series (Pattern Series) [[Solution]](InterviewPrograms/src/com/java/series/PatternSeries.java) |
| 131 | +3. Write the Java Program to print the following series ***Pattern Series*** [[Solution]](InterviewPrograms/src/com/java/series/PatternSeries.java) |
132 | 132 | ```
|
133 | 133 | 3, 33, 333, 3333, 33333, 333333 ....
|
134 | 134 | ```
|
|
144 | 144 | ```
|
145 | 145 | 2 9 28 65 126 217 344
|
146 | 146 | ```
|
147 |
| -7. Write the Java Program to print the following series (Geometric progression) [[Solution]](InterviewPrograms/src/com/java/series/GeometricProgression.java) |
| 147 | +7. Write the Java Program to print the following series ***Geometric Progression*** [[Solution]](InterviewPrograms/src/com/java/series/GeometricProgression.java) |
148 | 148 | ```
|
149 | 149 | 1 2 4 8 16 32 64 128 256 512 1024 ......
|
150 | 150 | ```
|
151 |
| -8. Write the Java Program to print the following series (Arithmetic progression) |
| 151 | +8. Write the Java Program to print the following series ***Arithmetic Progression*** |
152 | 152 | ```
|
153 | 153 | 0 5 10 15 20 25 30 35 ....
|
154 | 154 | ```
|
155 |
| -9. Write the Java Program to print the following series (Fibonacci Series) |
| 155 | +9. Write the Java Program to print the following series ***Fibonacci Series*** [[Solution]](InterviewPrograms/src/com/java/series/FibonacciSeries.java) |
156 | 156 | ```
|
157 | 157 | 1 1 2 3 5 8 13 21 34 55 89 .....
|
158 | 158 | ```
|
159 |
| -10. Write the Java Program to print the following series (Prime Number Series) [[Solution]](InterviewPrograms/src/com/java/series/PrimeNumberSeries.java) |
| 159 | +10. Write the Java Program to print the following series ***Prime Number Series*** [[Solution]](InterviewPrograms/src/com/java/series/PrimeNumberSeries.java) |
160 | 160 | ```
|
161 | 161 | 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 .....
|
162 | 162 | ```
|
163 |
| -11. Write the Java Program to print the following series (Triangular Number Series) [[Solution]](InterviewPrograms/src/com/java/series/TriangularSeries.java) |
| 163 | +11. Write the Java Program to print the following series ***Triangular Number Series*** [[Solution]](InterviewPrograms/src/com/java/series/TriangularSeries.java) |
164 | 164 | ```
|
165 | 165 | 1 3 6 10 15 21 28 36 45 55 .....
|
166 | 166 | ```
|
|
0 commit comments