assignments/04-functions.md
Define a program to find out whether a given number is even or odd.
Write a program to print the sum of two numbers entered by user by defining your own method.
Define a method that returns the product of two numbers entered by user.
Write a function to find if a number is a palindrome or not. Take number as parameter.
Convert the programs in flow of program, first java, conditionals & loops assignments into functions.
Write a function to check if a given triplet is a Pythagorean triplet or not. (A Pythagorean triplet is when the sum of the square of two numbers is equal to the square of the third number).
Write a function that returns all prime numbers between two given numbers.
Write a function that returns the sum of first n natural numbers.