Data can be made available to other modules through the use of:

a. Parameters.
b. Global variables.
c. Return values.
d. All of the above.



d. All of the above.

Computer Science & Information Technology

You might also like to view...

What names are displayed in the list box by the following program segment?

``` Dim newYork As String = "Manhatten,Bronx,Brooklyn,Queens,Staten Island" Dim boroughs() As String = newYork.Split(","c) lstBox.Items.Add(boroughs(0)) lstBox.Items.Add(boroughs.Min) ``` (A) Brooklyn and Queens (B) Manhatten and Staten Island (C) Bronx and Manhatten (D) Manhatten and Bronx

Computer Science & Information Technology

Bit stream methods commonly use algorithm functions like the exclusive OR operation (__________).

A. XOR B. EOR C. NOR D. OR

Computer Science & Information Technology