In this exercise, you use what you have learned about validating user input to answer Questions 1 - 3.
1. You plan to use the following statement in a C++ program to validate user input:while(inputString == "")What would your user enter to cause this test to be true ?
2. You plan to use the following statement in a C++ program to validate user input: while(userAnswer == "N" || userAnswer == "n")
What would a user enter to cause this test to be true ?
3. You plan to use the following statement in a C++ program to validate user input:while(userAnswer 10)What would a user enter to cause this test to be true ?