Given the following pseudocode, what is the value of myGrade after the call to the curveScore module?
```
Module main()
Declare Integer myGrade
Set myGrade = 82
Call curveScore(myGrade)
End Module
Module curveScore(Integer score)
Declare Integer newScore
Set newScore = score + 5
Display newScore
End Module
```
a. 87
b. 82
c. 5
d. cannot tell
b. 82
You might also like to view...
Anomaly detection IDS is good at spotting activity that is different from normal
Indicate whether the statement is true or false.
Categorize each of the following usability specifications as a performance measure or a preference measure. Justify your answers.
a. Users should be able to login in within 3 minutes, even if they forget their passwords. b. On a scale of 1 to 5 where 1 is “very difficult” and 5 is “very easy”, ninety percent of the users should rate the login process a 4 or above. c. Users should hit the “back” button no more than 2 times when looking for merchandise items. d. Over 95 percent of our current users will prefer the redesigned site to the current site. e. Users should be able to find the “check out” page in one click no matter where they are in the site. f. If they have shopped online previously, users should be satisfied with the security of our site’s online transaction system.