1. Demonstrate you successfully followed the steps in this lab
1. Demonstrate you successfully followed the steps in this lab by
preparing screen captures of yourunning the lab as specified in the Instructions above.
2. Change the code to average 20 integers as opposed to 10. Support your experimentation withscreen captures of executing the new code.
3. Prepare a new test table with at least 3 distinct test cases listing input and expected output forthe code you created after step 1.
4. What happens if you entered a value other than an integer? (For example a float or even astring). Support your experimentation with screen captures of executing the code.
5. Modify the code to allow the user to enter any number of positive integers and calculate theaverage. In other words, the user could enter any number of positive integers. (Hint: You canprompt the user for how many they want to enter. Or; you could use a sentinel value to triggerwhen the user has completed entering values). Prepare a new test table with at least 3 distincttest cases listing input and expected output for the code you created. Support yourexperimentation with screen captures of executing the new code.

