Design and implement a JavaScript program to accomplish the following: 1. Iterat
ID: 3559603 • Letter: D
Question
Design and implement a JavaScript program to accomplish the following:
1. Iterate and accept N test scores and N student names (where 10 <= N <= 20).
2. Compute the sum and average of the scores (display these values).
3. Determine the highest score (display this value).
4. Determine the lowest score (display this value).
5. Determine the letter grade of each score:
90-100 (A); 80 - 89 (b); 70 - 79 (C); 60 - 69 (D); 0 - 59 (F)
6. Display a table showing each student's name, score, and letter grade.
7. The highest and lowest scores should be highlighted with different colors.
Explanation / Answer
Design
Initial Algorithm
1. Obtain input from user.
2. Process input.
3. Output results.
Refinement
1. Through a GUI dialog box
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.