Answer:
List_of_students = {};    //Structure array that contains the scores of students and Names
Number_of_students = size(List_of_students);
Average_score ;   //Variable Stores average score
Below_Average = [];   //That is initially filled with zeros  
Highest_score ; //Initialize variable to store highest score
for ( i = 0 ; i < Number_of_students; i = i + 1)
{
       Average_score  = Average_score + List_of_students(i);    
      if ( i = 15)
       {
         Average_score  = Average_score / Number_of_students;
       }
}
for ( j = 0; j < Number_of_students ; i = i + 1)
{
     if (   List_of_students(j)  < Average_score)
      {
          print( "student  %name got %score , List_of_students(j),          List_of_students(j) )
      }
}
Compare_Score = 0;   //Variable to compare score
for ( k = 0; K < Number_of_students; k = k+1)
{
      if ( List_of_students(k) => Compare_Score)
     {
         Compare_Score = List_of_students(k);
     }
}
Highest_Score = Compare_Score;
Step-by-step explanation: