Given the following program segment, what data is passed from the Main program to the subprogram named Display?
```Main
Declare R As Integer
Set R = 2
Call Display(R*6, R+1, 14)
End Program
Subprogram Display(X, Y, Z)
Write X + “, “ + Z + “, “ + Y
End Subprogram```
a. 2, 2, 14 b. 12, 3, 14
c. 12, 14, 3 d. this cannot be done
B
Computer Science & Information Technology
You might also like to view...
OneNote Online can collect all of the pieces of a larger project for review and discussion in a single file
Indicate whether the statement is true or false
Computer Science & Information Technology
The Property Manager dialog box can be used to print a macro. _________________________
Answer the following statement true (T) or false (F)
Computer Science & Information Technology