1. Write a C++ program that allows the user to create a test bank of questions
2. The program should first ask the user how many questions he or she wishes to create.
3- The user should now be prompted for all information for each question.
4 For each question, the following information should be gathered:
Question type: Multiple choice (MC) or True/False (TF)
Question value
Actual question
If the question is TF, then get answer
If the question is MC, then get the number of options followed by each option and finally the answer
5. This program should be robust and allow users who make mistakes the ability to correct them (exception handling).