**Interview Practice Questions: Easy Java Coding**
1. Reverse a String - Write a program to reverse a string using loops.
2. Check Palindrome - Check if a given string is a palindrome.
3. Factorial of a Number - Find the factorial of a given number using recursion.
4. Fibonacci Series - Print the first N terms of the Fibonacci series.
5. Check Prime Number - Check whether a number is prime or not.
6. Find Largest Element in Array - Write a program to find the largest element in an array.
7. Sum of Digits - Find the sum of digits of a number.
8. Check Even or Odd - Determine whether a number is even or odd.
9. Swap Two Numbers - Swap two numbers without using a third variable.
10. Count Vowels in a String - Write a program to count the number of vowels in a string.
11. Print Multiplication Table - Print the multiplication table of a given number.
12. Check Armstrong Number - Check if a number is an Armstrong number.
13. Find GCD of Two Numbers - Write a program to find the Greatest Common Divisor (GCD).
14. Linear Search in Array - Implement linear search to find an element in an array.
15. Binary Search in Array - Implement binary search on a sorted array.
16. Count Words in a Sentence - Count the number of words in a given sentence.
17. Check Leap Year - Check whether a year is a leap year.
18. Print Pattern (Pyramid) - Print a pyramid pattern using stars '*'
19. Sum of Array Elements - Calculate the sum of all elements in an array.
20. Reverse an Integer Number - Reverse the digits of an integer number.