- Write a Java method to print the multiplication table of a number n.
- Write a program using functions to print the following pattern:
*
**
***
****
- Write a recursive function to calculate the sum of first n natural numbers.
- Write a function to print the following pattern:
****
***
**
*
- Write a function to print the nth term of the Fibonacci series using recursion.
- Write a function to find the average of a set of numbers passed as arguments.
- Repeat problem 4 using Recursion.
- Repeat problem 2 using Recursion.
- Write a function to convert Celsius temperature into Fahrenheit.
- Repeat problem 3 using an iterative approach.