Given the following pseudocode, what is the value of score after the call to the curveScore module?

```
Module main()
Declare Integer myGrade = 93
Call curveScore(myGrade)
End Module
Module curveScore(Integer score)
Declare Integer newScore
Set newScore = score + 5
Display newScore
Set score = 0
End Module

```

a. 87
b. 82
c. 0
d. cannot tell

c. 0

Computer Science & Information Technology

You might also like to view...

The event propertyevt.keyreturns the text of the key used in the event.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The sort utility (Sobell, page 58) displays a file in alphabetical order. Use sort to display the days file you created in step 14 in alphabetical order.

What will be an ideal response?

Computer Science & Information Technology