Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+15 votes

When finding the ACT or SAT scores in the program, are we prompting the user to answer their scores in the processApplicant method, or in the computeSATScore/computeACTScore methods?

asked in CSC211_Winter2018 by (1 point)

2 Answers

+12 votes

The prompt + user input should be in the getInteger method where you call it in the computeSATScore/computeACTScore method which is then called in the processApplicant method. See the third page of the instructions to get a clear view of the method calls.

answered by (1 point)
+11 votes

Within the "Process Applicant" method, you will use the "getString" method first to prompt the user to pick which test they took. After that you will use conditional statements that either call the "computeSATScore" or "computeACTScore" methods based on what the user entered in "getString". It is within the "computeSATScore" or "computeACTScore" where the user will use the scanner to input their score while calling the "getInteger" method.

answered by (1 point)
...