1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Andreyy89
3 years ago
10

You are given a list of students names and their test scores. Design a pseudocode that does the following:(a) Calculates the ave

rage test scores.(b) Determines and prints the names of all the students whose test scores are below the average test score.(c) Determines the highest test score.(d) Prints the names of all
Mathematics
1 answer:
Rashid [163]3 years ago
4 0

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:

You might be interested in
Can someone explain how to solve the system of equation x+y=3 by graphing?
Bess [88]

Answer:

its not possible


Step-by-step explanation:


5 0
3 years ago
For what value of x is the rational expression below equal to zero?<br> 2-X<br> 2 + x
s344n2d4d5 [400]

Answer:

2

Step-by-step explanation:

If you divide 0 by any number you will get 0

If you will substitute x for 2 you will have:

2-2/2+2=0/4=0

3 0
3 years ago
Read 2 more answers
Can someone properly explain the multiplier method I need help for revision
amm1812

Answer:

yes

Step-by-step explanation:

I'm ready to help anyone in maths

8 0
2 years ago
Why is pi day celebrated on march 14th
Amiraneli [1.4K]
Pi Day is celebrated on March 14th (3/14) around the world. Pi (Greek letter “π”) is the symbol used in mathematics to represent a constant.
7 0
3 years ago
Read 2 more answers
Please help!! i have no idea!
Gemiola [76]

Answer:

θ = 60.34

Step-by-step explanation:

\frac{\left(12.8\cdot \:sin\left(90\right)\right)}{sin\left(52.3\right)} = 16.177

\frac{\left(16.177\cdot \:sin\left(90\right)\right)}{18.6} =  θ = .869

arcsin\left(.869\right) = 60.34

7 0
3 years ago
Read 2 more answers
Other questions:
  • Ms. Jackson is driving from south bend to Indianapolis. She measures a distance of 4.3 cm between the cities on her Indiana road
    7·2 answers
  • ) 6. What is the volume of the composite figure
    10·1 answer
  • Evaluate the variable expression x + y for the given values of x and y . X=43.37 ; Y=18.24
    6·1 answer
  • When a line of symmetry divides an image, every point on one side of the line has a corresponding point on the other side.
    7·2 answers
  • Arrange the absolute value expressions in increasing order of their values. |-90| |-43| |47| |-55| |-88| |38| |-18|
    5·1 answer
  • Find the solution for the variable. x =
    7·1 answer
  • What is a hectoliter?<br><br> 1,000 liters<br> 100 grams<br> 1/100 of a liter<br> 100 liters
    5·2 answers
  • Table 1 contains outputs of the function f(x)=b^x for some x values and Tables 2 contains outputs of the function g(x)=logb (x)
    5·1 answer
  • Raymond's age plus two times Melanie's age equals 75. Raymond is 3 years older than Melanie. How old is Melanie? ?​
    9·2 answers
  • Find the GCF of the monomials: 32x^2 and 24x^2y
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!