YOU MUST USE LOOPS IN YOUR ANSWERS TO THESE QUESTIONS.
QUESTION 1
Start a new C# console application project, h:\Question1.
Put your name and the date in a header in the source code.
Write a loop that will display the numbers from 10 to 0 in order.
Example:
10 9 8 7 6 5 4 3 2 1 0
QUESTION2
Start a new C# console application project, h:\Question2.
Put your name and the date in a header in the source code.
Write code that will:
• Allow a student to record the total marks (%) obtained in each of the 8 papers
taken in a university year.
• Report the highest, lowest and average marks from those 8 papers.1
Example:
If the student entered marks of 52, 66, 83, 69, 74, 48, 59 and 65
Your highest mark was 83
Your lowest mark was 48
Your average mark was 64.5%