Question

In: Computer Science

ITP100 Project: Part 3 Create the pseudocode solution to a program that calculates the final score...

ITP100 Project: Part 3 Create the pseudocode solution to a program that calculates the final score and letter grade for one student. Please use the following grading system: 9 Homework Assignments – 100 points each 10 points 11 Quizzes – 100 points each 5 points 5 Projects – 100 points each 10 points 6 Discussion posts – 100 points each 10 points 4 Exams – 100 points each 65 points A = 90 – 100% B = 80 – 89% C = 70 – 79% D = 60 – 69% F = 0 – 59% Modify part 2 of the project by including repetitive structures, functions and input validation (Chapters 5, 6 and 7). Try to reduce your code by reusing functions or modules that perform similar tasks. Do not use arrays.

Solutions

Expert Solution

You must specify the language in which you are going to code for better solution and syntax.

As it was pseudo code you can easily modify it according to language

According to the given question we were required to write a program for calculating the final score and letter grade for one student according to the given grading system.

Pseudocode is given below:-

Read: assignment score, assignment max(900), assignment weight(10)

Read : quiz score,quiz max(1100), quiz weight(5)

Read: project score, project max(500), project weight(10)

Read: discussion post score, discussion max(1000), discussion weight(10)

Read: exam-score, exam-max(400), exam-weight(65)

assignment total = (assignmment score/assignment max)*assignment weight

quiz total = (quiz score/quiz max)*quiz weight

project total = (project score/project max)*project weight

discussion total = (discussion score/discussion max)*discussion weight

exam-total = (exam-score/exam-max)*exam-weight

total grade = assignment total+quiz total+project total+discussion total+exam-total

IF total grade>=90 then

       letter grade = A

ELSE IF total grade>=80 then

       letter grade = B

ELSE IF total grade>=70 then

       letter grade = C

ELSE IF total grade>=60 then

       letter grade = D

ELSE

        letter grade = F

ENDIF

WRITE final score and letter grade


Related Solutions

ITP100 Project: Part 3 Create the pseudocode solution to a program that calculates the final score...
ITP100 Project: Part 3 Create the pseudocode solution to a program that calculates the final score and letter grade for one student. Please use the following grading system: 9 Homework Assignments – 100 points each 10 points 11 Quizzes – 100 points each 5 points 5 Projects – 100 points each 10 points 6 Discussion posts – 100 points each 10 points 4 Exams – 100 points each 65 points A = 90 – 100% B = 80 – 89%...
Create the pseudocode solution to a program that calculates the final score and letter grade for...
Create the pseudocode solution to a program that calculates the final score and letter grade for one student. Please use the following grading system: 9 Homework Assignments – 100 points each 10 points 11 Quizzes – 100 points each 5 points 5 Projects – 100 points each 10 points 6 Discussion posts – 100 points each 10 points 4 Exams – 100 points each 65 points A = 90 – 100% B = 80 – 89% C = 70 –...
Create a small program that calculates the final grade in this course, given the different assignments...
Create a small program that calculates the final grade in this course, given the different assignments and exams you will be required to take. The program should ask for all the grades through the semester, and as a final output it should compute the weighted average as well as give the final letter grade. You should use the syllabus for this course to calculate the final grade. • Five assignments worth 30 points each. • Three projects worth 100 points...
a.Create the logic for a program using pseudocode that calculates and displays the amount of money...
a.Create the logic for a program using pseudocode that calculates and displays the amount of money you would have if you invested $5000 at 2 percent simple interest for one year. Create a separate method to do the calculation and return the result to be displayed. b.Modify the program in Exercise 2a so that the main program prompts the user for the amount of money and passes it to the interest-calculating method. c.Modify the program in Exercise 2b so that...
Create a program that calculates the average of 3 test scores. Make use of an array...
Create a program that calculates the average of 3 test scores. Make use of an array to store the integer scores. const int size = 3; int testScores[size]; Send this array to a function that actually calculates and returns the average. 1. Tell the user what the program does. 2. Prompt the user to enter the integer scores. ( Use a for loop to do this. ) 3. Create and implement a function with prototype: double average( int a[], int...
As part of the Final Project, you will need to create and include an original chart....
As part of the Final Project, you will need to create and include an original chart. Input the data into an Excel document and create a chart you will be using in your Final Project. Be sure to include a clear title for the chart and correctly label all data and units. Include your approved topic somewhere on the page. *accounting I just need a sample of calculations. it's to show proper use of excel chart. you can use any...
Write program logic or pseudocode to create 3 small programs that do the following: The first...
Write program logic or pseudocode to create 3 small programs that do the following: The first should compute the sum of 2 given integers. The second should multiply the 2 integers. The third should triple the sum of the 2 integers.
Create a Project and a Class called “FinalGrade” Write a Java program to compute your final...
Create a Project and a Class called “FinalGrade” Write a Java program to compute your final grade for the course. Assume the following (you can hard-code these values in your program). Assignments are worth 30% Labs are worth 40% Mid-term is worth 15% Final is worth 15% Ask for the grades in each category. Store them in a double variable. Print out the final percentage grade.           For example, Final Grade Calculation Enter percentage grades in the following order. Assignments,...
Create a program in java that calculates area and perimeter of a square - use a...
Create a program in java that calculates area and perimeter of a square - use a class and test program to calculate the area and perimeter; assume length of square is 7 ft.
create flowchart using Flowgorithm and Pseudocode for the following program example:   Design a program for Jones...
create flowchart using Flowgorithm and Pseudocode for the following program example:   Design a program for Jones College. The current tuition is $12,000 per year, and tuition is expected to increase by 5 percent each year. Display the tuition amount for each year over the next five years (use a looping structure).
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT