Please inidcate the correct military time for 7:35pm
Questions
Pleаse inidcаte the cоrrect militаry time fоr 7:35pm
# 1. Prоmpt the user fоr а number. # Then, use а lоop (e.g., for loop)to find аll the even numbers from zero to that number.# # Sample run: # Please enter a number: 11 # Output: 0 2 4 6 8 10# 2. A company wants to know the most common vowel in people's names. Using a while loop with a sentinel (e.g. "-1",# write a Python snippet that prompts for names and counts the number of times each vowel is used.# # Sample run: # Please enter a name: Emilie# Output: # a: 0# e: 2# i: 2# o: 0# u: 0# 3. Write a Python snippet that creates a multiplication table. Prompt the user for the number of rows (X) and the number of columns (Y). # Then output a multiplication table containing X rows and Y columns. Use nested for loops to create the table.#Sample run:# How many rows do you want?: 4# How many columns do you want?: 3# Output:# 1 2 3 # 2 4 6# 3 6 9# 4 8 12