Do While Loop:

Q1: Write a program to prompt the user to enter his age. Run the program again and again until he enters a valid age (between 1 and 100) using a do-while loop.

Q2: Implement a program that simulates rolling a six-sided die until a specific number is rolled using a do-while loop.

Q3: Develop a program to calculate the sum of numbers entered by the user until they enter 0 using a do-while loop.

Q4: Write a program that asks the user for a password again and again until the correct password is entered using a do-while loop.

Q5: Write a program to take input from the user and print the multiplication table for the given number using a do-while loop.