Day 2: Conditional Statements and Loops QUESTION 1: Write a script that accepts a number and checks if it is: Even or odd. QUESTION 2: Create a JavaScript program to determine whether a given year is a leap year. QUESTION 3: Write a program to print numbers from 1 to 50. If a number is divisible by 3, print “Fizz”. If divisible by 5, print “Buzz”. If divisible by both, print “FizzBuzz”. QUESTION 4: Write a script that calculates the factorial of a given number using a for loop. QUESTION 5: Create a program that reverses a string provided by the user.