🔹 🟢 Easy Level (1–10)
- Check if a number is positive or negative
- Check if a number is even or odd
- Check if a person is eligible to vote (18+)
- Find the largest of two numbers
- Print numbers from 1 to 10 using for loop
- Print numbers from 10 to 1 (reverse)
- Print even numbers from 1 to 20
- Print odd numbers from 1 to 20
- Take a number and print its square
- Check if a number is divisible by 5
🔹 🟡 Medium Level (11–20)
- Find the largest of three numbers
- Check if a number is multiple of 3 and 5
- Print numbers from 1 to N (user input)
- Find the sum of first N natural numbers
- Print the multiplication table of a number
- Count numbers from 1 to 50 divisible by 7
- Reverse a number (e.g., 123 → 321)
- Count digits in a number
- Check if a number is palindrome
- Print this pattern:
*
**
***
****
*****
🔹 🔴 Hard Level (21–30)
- Find the factorial of a number
- Check if a number is prime
- Print all prime numbers from 1 to 100
- Generate Fibonacci series up to N terms
- Print this pattern:
1
12
123
1234
12345
- Find the sum of digits of a number
- Find the largest digit in a number
- Create a simple calculator using switch ( + – * / )
- Guessing game with limited attempts (5 tries)
- Print this pattern:
*****
****
***
**
*
🎯 Bonus Challenge (for smart students)
👉 FizzBuzz (very popular interview question)
- Print numbers 1–50
- If divisible by 3 → “Fizz”
- If divisible by 5 → “Buzz”
- If both → “FizzBuzz”






