Using MATLAB
A list of 30 test scores is: 31, 70, 92, 5, 47, 88, 73, 51, 76,80, 90, 55, 23, 43, 98, 36, 87, 22, 61, 19, 69, 26, 82, 99, 71, 59,49, 64
Write a computer program that determines how many grades arebetween 0 and 19, between 20 and 39, between 40 and 59, between 60and 79, and between 80 and 100. The results are displayed in thefollowing form:
Grades between 0 and 19, 2 students
Grades between 20 and 39, 4 students
Grades between 40 and 59, 6 students
and so on (Hint: use the command fprintf to display theresults).