Question: Tasks In the previous assignment, you developed pseudocode for a grade book. The pseudocode is shown below for your reference. You also can work based
Tasks In the previous assignment, you developed pseudocode for a grade book. The pseudocode is shown below for your reference. You also can work based on your own pseudocode from In- Class Assignment One. The task for today's In-Class Assignment Two is to implement the program using JavaScript. Using prompts for user inputs will be fine. If you want to challenge yourself, you can practice using html form on your own. I/This program will calculate and display the grade of an individual student in ISM 301 /In-class Assignment One Start declare variables; Declare numeric AssignmentScore, QuizScore, ExamScore, TotalPoints, StudentGrade, TotalPossiblePoints 600 //display components of ISM301 grade Display "In ISM 301, we have following parts:" Display "Individual Assignments: 250 points" Display "Quizzes: 50 points Display "Exams: 300 points"; Display "Total: 600 points" /User inputs Get input for AssignmentScore, QuizScore, ExamScore from user //or you can use the following two statements for each input. No need to do both Display "Please enter AssignmentScore (0-250)" Input AssignmentScore; // calculations Total Points- AssignmentScoreQuizScore ExamScore; Display "Student has scoredTotalPoints; StudentGrade (TotalPoints/TotalPossiblePoints) *100; Display "Student's Final Grade is "+StudentGrade +" %"; End This page says Please input points for quizes (0-50 Cancel
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
