Answer:
Complete Question
a. Calculates the average test scores.
b. Determines and print the names of all the students whose test score is below the average test score.
c. Determines the highest test score.
d. Prints the names of all the students whose test score is the same as the highest test score.
Input N; //N represents number of students
Students_Names = {};
Students_Scores = {}
Average = 0
For I = 1 to N
Input Students_Names[I]
Input Students_Scores[I]
Next I
//Calculate Average Test Score
j = 0
Do
Average = Average + Students_Scores[j]
j = j + 1
While (j<N)
Average = Average/N
Print Average.
k = 0
//Print below average
Do
If(Students_Scores[k] < Average)
Print Students_Names[k] + " score is "+ Students_Scores[k]+ " and it is below average"
k = k+ 1
While (k<N)
Highest_score = 0
m = 0
Do
If(Students_Scores[m] > Highest_score)
Highest_score = Students_Scores
m = m+1
While (m<N)
Print "Highest Score is" + Highest_score
n = 0
Do
If(Students_Scores[n] == Highest_score)
Print Students_Names[n] + "has the same score has the highest score"
n = n+1
While (n<N)
Compare_Score = List_of_students(k);
}
}
Highest_Score = Compare_Score
Read more on Brainly.com - brainly.com/question/13058173#readmore