1. Open the FlowChart_TestCaseTemplate.docx.
2. Delete everything from the file except the FlowChart example.
3. Create a flowchart for Practice Programs #4. You may use the diagram designer and copy/paste into the MS Word file.
4. Fill in the various test cases you would run against the program.
Write a program that reads a one-line sentence as input and then displays the following response: If the sentence ends with a question mark (?) and the input contains an even number of characters, display the word Yes. If the sentence ends with a question mark and the input contains an odd number of characters, display the word No. If the sentence ends with an exclamation point (!), display the word Wow. In all other cases, display the words you always say followed by the input string enclosed in quotes. Your output should all be on one line. Be sure to note that in the last case, your output must include quotation marks around the echoed input string. In all other cases, there are no quotes in the output. Your program does not have to check the input to see that the user has entered a legitimate sentence.