Part2: Letter Grade To Number Write a program that translates a letter grade into a number grade. Letter grades are A, B, C, D, and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0. There is no F+ or F-. A + increases the numeric value by 0.3, a decreases it by 0.3. However, an A+ has value 4.0. A template java file: LetterGradeToNumber.java is provided. Your program output should like Figure 2: Submission Upload the following items on D2L dropbox, including: 1. The source code (Quadrants.java and LetterGradeToNumber.java). 2. Screenshots of your program outputs for each program (saved as png or jpg files).
Part2: Letter Grade To Number Write a program that translates a letter grade into a number grade. Letter grades are A, B, C, D, and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0. There is no F+ or F-. A + increases the numeric value by 0.3, a decreases it by 0.3. However, an A+ has value 4.0. A template java file: LetterGradeToNumber.java is provided. Your program output should like Figure 2: Submission Upload the following items on D2L dropbox, including: 1. The source code (Quadrants.java and LetterGradeToNumber.java). 2. Screenshots of your program outputs for each program (saved as png or jpg files).
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Expert Solution
Step1
Algorithm:
Step1: Enter grade by user and check the numerical value by letterGradeValue() function.
Step2: Function check with conditions with character at index 0 & 1 of user input string.
Step3: If grades has "+" at index 1, then return value increases 0.3 by operatorValue().
Step4: Else if grades has "-" at index 1, then return value decreases 0.3 by operatorValue().
Step5: Display the return numerical value.
The java program solution is given below:
Step by step
Solved in 4 steps with 3 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education