Small Basic Programming
Question: Average score
Write a program that uses loops to collect data and calculatethe average score over a number of tests for a number ofstudents.
The program should :
1. first ask the user to enter the number of students in therange of 1 to 10.
2. then the program asks the user to enter the number of tests(in the range of 1 to 5)
3. Then use a loop to collect the scores for those many testsfor each student. The outer loop will iterate once for eachstudent. The inner loop will iterate several times, once for eachtest. Each iteration of the inner
OR
OR