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
A certain statistic bˆ is being used to estimate a population parameter B. The expected value of bˆ is equal to B. What property
insens350 [35]

Answer:

Unbiased

Step-by-step explanation:

If b^ is equal to B this means that it is an unbiased estimator. When there is an absence of bias, we have an unbiased estimator. As an unbiased estimator it gives accurate information most of the time. The result it gives is not over estimated and also it is not underestimated.

Expected value = true value

Parameter estimates are correct on average

Thank you

6 0
3 years ago
G(x) = 4x + 2
mojhsa [17]

Answer:

4x \times 2x + 4x \times 5 + 2 \times 2x + 2 \times 5 = 8x {}^{2} + 24x + 10

6 0
3 years ago
What is the equation in slope intercept form of a line with slope -4/3 and y-intercept -2
Marta_Voda [28]
Y=mx+b
m=slope
b=y-intercept

Given
Slope=-4/3
y-intercept=-2

Plug them into the slope intercept formula
Final answer: y=-4/3-2
6 0
4 years ago
The half-life of the radioactive isotope gallium-70 is 20 minutes. The initial amount of gallium-70 is 25 milligrams. When will
stiv31 [10]

Answer:

Whether or not a given isotope is radioactive is a characteristic of that particular isotope. Some isotopes are stable indefinitely, while others are radioactive and decay through a characteristic form of emission. As time passes, less and less of the radioactive isotope will be present, and the level of radioactivity decreases. An interesting and useful aspect of radioactive decay is half-life, which is the amount of time it takes for one-half of a radioactive isotope to decay. The half-life of a specific radioactive isotope is constant; it is unaffected by coTnditions and is independent of the initial amount of that isotope.

6 0
3 years ago
Read 2 more answers
Find the value of x. Then find the m∠S and m∠T
Sophie [7]

Answer:

1

Step-by-step explanation:

<h2>Given, y = b m x m</h2><h2>y' = -b m x (m+1)</h2><h2>At any point (x1,y1)</h2><h2 /><h2>Equation of tangent is given by </h2><h2>y - y1 </h2><h2>------- = -b m x1 -(m+1)</h2><h2>x - x1</h2><h2>Y intercept = - m</h2><h2>X intercept = (m-1) × 1</h2><h2> m </h2><h2>Area bounced = 1 (m - 1)×1</h2><h2> ---- ---------------------- x m</h2><h2> 2 m</h2><h2>For area to be constant, m = 1</h2>
4 0
3 years ago
Other questions:
  • Two sides of an isosceles triangle have lengths 7 and 14. Find the length of the third side.
    8·2 answers
  • Round 86,124 to the nearest ten thousand
    6·1 answer
  • 2. George estimates that each bale of hay in his field weighs 62.5 pounds on
    14·2 answers
  • 30 ounces is how many pounds
    12·1 answer
  • PLEASE HELP ME WITH THIS THANKS
    9·2 answers
  • The graph shows the volume of ice cubes versus temperature in degrees
    10·1 answer
  • I need this by tonight for school
    9·2 answers
  • Plz help will name brainiest and 100 points
    6·2 answers
  • Solve using substitution. x − 6y = –8 x + 6y = 16 please help imma fail
    13·2 answers
  • Acelus<br> AABC-AQRS<br> Find the missing side length, m.<br> Source<br> 10<br> А<br> 2<br> m = [?]
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!