When an array is passed to a function, its ____ is the only item actually passed.
A. value
B. data type
C. address
D. offset
Answer: C
You might also like to view...
To turn off items such as moves and formatting with track changes turn off the appropriate ________ box in the Track Changes Options dialog box
A) radio B) check C) comment D) track changes
In which of the following is the variable name declared as a global variable?
A. Start Call getInput() Call displayName() Stop Module getInput() Declare String name Display "Enter your name" Input name End Module Module displayName() Display "Your name is: " + name End Module B. Start Call getInput() Call displayName() Stop Module getInput() Display "Enter your name" Input name End Module Module displayName() Declare String name Display "Your name is: " + name End Module C. Start Call name Call getInput() Call displayName() Stop Module getInput() Display "Enter your name" Input name End Module Module displayName() Declare String name Display "Your name is: " + name End Module D. Start Declare String name Call getInput() Call displayName() Stop Module getInput() Display "Enter your name" Input name End Module Module displayName() Display "Your name is: " + name End Module