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
HELP QUICK PLZ!!!
yulyashka [42]
B. 12 is the answer to your queation
7 0
3 years ago
a side of a square bulletin board measures 34 inches. Which of these is the closest length of a diagonal?
Delicious77 [7]
If you diagonally slice the board, you get a right angle, which pyth thm can be used. side2 x side2 = diagonal2

34squared + 34squared = x (diagonal) squared
1156 + 1156 = x squared
2312 = x squared
x = 48.0832611207
so just correct it to the closest as 48 inches
6 0
3 years ago
What is the volume of a cube that measures 0.6 m on each edge?
Tamiku [17]
Volume=a3=0.63=0.216
4 0
3 years ago
Read 2 more answers
The graph of y = f (x) is given in the figure. Sketch = 1/2 ( + 2) − 2.
jolli1 [7]

Answer:

y=1/2+2

Step-by-step explanation:

8 0
2 years ago
Simplify the expression
Masja [62]

The solution to the expression \frac{x^2+7x+12}{x-3} .\frac{x^2-6x+9}{2x^2-18} gives (x + 4)/2

<h3>What is an equation?</h3>

An equation is an expression that shows the relationship between two or more number and variables.

\frac{x^2+7x+12}{x-3} .\frac{x^2-6x+9}{2x^2-18} \\\\=\frac{(x +3)(x +4)}{x-3} .\frac{(x-3)(x-3)}{2(x+3)(x-3)} =\frac{x+4}{2}

The solution to the expression \frac{x^2+7x+12}{x-3} .\frac{x^2-6x+9}{2x^2-18} gives (x + 4)/2

Find out more on equation at: brainly.com/question/2972832

#SPJ1

5 0
2 years ago
Other questions:
  • A coat originally cost $130. Now it is on sale for 60% of its original cost. What is the sale price of the coat?
    10·1 answer
  • Deductions this Week: Federal Tax $52.02, FICA $33.02, State $5.33. Find the annual Federal Tax deduction
    13·2 answers
  • What two numbers multiply to get -24 and add to get 2
    6·1 answer
  • What is | 5x + 8 | = x?
    8·1 answer
  • An object is dropped off a building that is 144 feet tall. After how many seconds does the object hit the ground? (s = 16t 2) 3
    15·2 answers
  • 3/10 11/12 5/8 in Oder from least to greatest
    12·2 answers
  • The sum of two numbers is 25. The larger number is four times the smaller number. Find the numbers.
    8·1 answer
  • Module 1 MMA Review Activity 1. Mrs. Labuski is buying Halloween Candy for the trick or treaters. She likes to buy a mix fruit f
    11·1 answer
  • Number 9 plssss I need help
    10·1 answer
  • What is the answer the file at the bottom
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!