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...

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

1. The indexed variables (members) of an array must be integers. 2. The locations of the various indexed variables in an array can be spread out all over the memory. 3. The following array declaration is legal double scores[]={0.1,0.2,0.3}; 4. Arrays can be passed to functions. 5. Arrays can be returned from a function.

Computer Science & Information Technology

Why is a LinkedBagobject not concerned about becoming full?

What will be an ideal response?

Computer Science & Information Technology

The SCU uses hybrid MESI and _________ protocols to maintain coherency between the individual L1 data caches and the L2 cache.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

The data in a two-dimensional array are not required to have the same data type.

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

Computer Science & Information Technology