Answer the following questions true (T) or false (F)
1. True/False: Parameters, as well as arguments, can be constants, variables, or general expressions.
2. True/False: Changes to the value of value parameters do not affect the value of the corresponding variables in the calling module.
3. True/False: When a variable is passed by value, the submodule that variable is passed to will receive the actual storage location where the value of the variable is stored.
1. F
2. T
3. F
You might also like to view...
The Picture Alignment property determines where the ________ for a form displays on the form
A) background picture B) command controls C) record navigation buttons D) header picture
Answer the following statements true (T) or false (F)
1. The following pair of statement is valid. Dim x = CInt(InputBox("Enter number of items (must be a positive integer)")) ReDim myArray(x - 1) 2. A fractional number such as 4.6 is not allowed as a subscript. 3. Arrays are said to be ordered only if the values are in ascending order. 4. Ascending is the default direction for an Order By clause. 5. Searching successive elements of an ordered list beginning with the first element is known as a binary search.