
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question

Transcribed Image Text:With your current Java knowledge, you have decided to write a program that
will calculate a student's GPA for the current semester. The program should
prompt the user to enter four values representing the number of A, B, C and
Ds earned for the semester then calculate and display the GPA.
When writing the program, consider the following:
The program should prompt the user to enter four INTEGER values
representing the number of grades earned for each letter grade.
GPA is calculated by dividing the total points earned by the total
number of credits attempted.
All of the courses taken for the semester are 4 credits.
●
●
●
●
●
To determine the calculations, A grades have a point value of 4, B
grades a point value of 3, C grades a point value of 2 and D grades a
point value of 1.
Total Number of Credits Attempted = Sum of Number of Courses
multiplied by the number of credits for each course.
The total points earned is the sum of the credit hours multiplied by
the point value for each letter grade.
Use the Scanner class to accept the user input.
The output should be displayed with 3 significant decimal places.
Explicit casting and constant representation should be used where
applicable.
• Output should be displayed in full sentence.
Save the code as GPAScanner.java
Sample Program Execution:
GPA Calculator
Enter the number of A grades earned: 3
Enter the number of B grades earned:: 1
Enter the number of C grades earned: 0
Enter the number of D grades earned: : 2
Grade
A
B
с
D
Total
Credit Hours
12
4
0
8
24
Grade Points
48
12
0
Be sure to include the following in both files
8
68
The GPA for attempting 24 credit hours and earned grades is 68/24 = 2.833
Part II.
Modify the program above to accept the input using GUI window dialog
boxes. Test your program with different input values. Save the program as
GPAGUI.java
Headers containing appropriate information
o Informative comments
O Whitespace and indentation
O User prompts for entered data
o Aligned and labeled output
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 5 steps with 2 images

Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Part II.
Modify the program above to accept the input using GUI window dialog boxes. Test your program with different input values
Solution
by Bartleby Expert
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Part II.
Modify the program above to accept the input using GUI window dialog boxes. Test your program with different input values
Solution
by Bartleby Expert
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.Similar questions
- in java Write a program to calculate item’s sale price 1)Ask user to enter the name of item e.g t-shirt 2)Ask user to enter the color of the shirt they want to buy 3)Ask user to enter the item’s price e.g 10, 100, 200 4)Write a method to calculate discounted price 1)If item’s price is more than or equal to 100, get 10% discount 2)Item’s color must be ‘blue’ 3) Return discounted price 4) If less than 100 or not blue, no discount 4) Mainline should display, item name, color and the discounted pricearrow_forwardJava Program: Your job is to write a program called BasicIO that will perform simple input/output and math operations. Complete your program by following the steps below.arrow_forwardJava - Name Formatarrow_forward
- Program must be in Java Body Mass Index (BMI) is one of the criteria that is used to calculate whether one is fit or not basing on a person’s height (m) and weight (kg). The criterion is very simple; if one’s BMI is 25 or greater, it signifies overweight. A BMI less or equal to 18.5 indicates underweight. Lastly, a BMI greater than 30 shows obesity.You have been requested to create a program that that helps the Namibian Defence Forces’ (NDF) Captain to calculates the BMI of a person (BMI = weight/height2) and also determine whether the person has also completed running 10 km in the required time. Men should complete 10km in less than 60 minutes for them to be accepted. Women should do that under 80 minutes. Both males and females are accepted if their BMI is less than 25 and greater than 18.5. For 2018 intake, there are already 6 males selected and 1 female. The values for gender, mass and weight are enter by user inputsSample Run 1Welcome to NDF Captain's Selection…arrow_forwardIn JAVA pleasearrow_forwardIn this lab, you use the flowchart and pseudocode found in the figure below to add code to a partially created Java program. When completed, college admissions officers should be able to use the Java program to determine whether to accept or reject a student, based on his or her test score and class rank. start input testScore, classRank if testScore >= 90 then if classRank >= 25 then output "Accept" else output "Reject" end if else if testScore >= 80 then if classRank >= 50 then output "Accept" else output "Reject " endif else if testScore >= 70 then if classRank >= 75 then output "Accept" else output "Reject" end if else out put "Reject" end if end if end if stop Instructions Study the pseudocode in picture above. Declare the variables testScoreString and classRankString. Write the interactive input statements to retrieve: A student’s test score (testScoreString) A student's class rank (classRankString) Write the statements to convert the string representation…arrow_forward
- In Java Write a program that generates two integers and prompts the user to enter the sum of these two integers. Revise the program to generate three single digit integers and prompt the user to enter the sum of these three integersarrow_forwardin Java languagearrow_forwardA company has 5 stores {1, 2, 3, 4, 5}. The sales for each store is as follows: {200, 300, 400, 500, 600}. The tax rate is 6% Write a java program that: 1) Calculates the sales tax for each store and the total sales tax for the company.arrow_forward
- This needs to be done in Java! (Calculating Sales) An online retailer sells five products whose retail prices are as follows: Product 1, $2.98; product 2, $4.50; product 3, $9.98; product 4, $4.49 and product 5, $6.87. Write an application that reads a series of pairs of numbers as follows: product number quantity sold Your program should use a switch statement to determine the retail price for each product. It should calculate and display the total retail value of all products sold. Use a sentinel-controlled loop to determine when the program should stop looping and display the final results.arrow_forward5. You are playing a game that has two dice - one die has 6 sides numbered 1 through 6 and the second die has 8 sides numbered 1 through 8. A turn involves rolling both die together. Write Java code to play 1,000 turns and keep track of the sum of the two dice in each roll I.e, (2 through 14). When all 1,000 turns have been completed, print a formatted table showing the value of the sum of the two dice (2 through 14) and the number of times that value occurred.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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