Java Programs: Fibonacci Series
Java Programs: Fibonacci Series
Java programs are frequently asked in the interview. These programs can be asked from
control statements, array, string, oops etc. Let's see the list of java programs.
1) Fibonacci series
Write a java program to print fibonacci series without using recursion and using recursion.
Input: 10
Output: 0 1 1 2 3 5 8 13 21 34
2) Prime number
Input: 44
Input: 7
Output: prime number
3) Palindrome number
Input: 329
Input: 12321
Output: palindrome number
4) Factorial number
Write a java program to print factorial of a number.
Input: 5
Output: 120
Input: 6
Output: 720
5) Armstrong number
Input: 153
Output: Armstrong number
Input: 22
Write a java program to sort an array elements using bubble sort algorithm.
Input: 18 9 33 4 84 32
Output: 4 9 18 32 33 84
7) Selection Sort
Write a java program to sort an array elements using selection sort algorithm.
Input: 18 9 33 4 84 32
Output: 4 9 18 32 33 84
8) Insertion Sort
Write a java program to sort an array elements using insertion sort algorithm.
Input: 18 9 33 4 84 32
Output: 4 9 18 32 33 84
10) Binary Search
Input: 1,2,5,6,3,2
Output: 3
Input: 1,2,5,6,3,2
Output: 5
13) Find Largest Number in an Array
Input: 1,2,5,6,3,2
Output: 6
Input: 1,2,5,6,3,2
Output: 2
Input: 1,2,5,6,3,2
Output: 1
Input: 10,20,20,30,30,40,50,50
Output: 10 20 30 40 50
Input:
First matrix elements:
1 1 1
2 2 2
3 3 3
Second matrix elements:
1 1 1
2 2 2
3 3 3
Output:
Input:
Output:
Write a java program to print odd and even number from an array.
Input: 1,2,5,6,3,2
Output:
Odd Numbers:
1
5
3
Even Numbers:
2
6
2
20) Transpose matrix
Output: