Multiple Choice
What task is accomplished by the following code? Dim intFirstArray(2) As Integer
Dim intSecondArray(2) As Integer
IntFirstArray(0) = 10
IntFirstArray(1) = 19
IntFirstArray(2) = 26
IntSecondArray = intFirstArray
A) Two distinct arrays are created in memory with the same values.
B) intFirstArray and intSecondArray reference the same array in memory
C) This code will generate a run-time error. You cannot assign the name of one array to another.
D) intFirstArray is initialized with values but intSecondArray contains no values
Correct Answer:

Verified
Correct Answer:
Verified
Q14: Which type of loop is designed specifically
Q15: Which of the following provides the index
Q16: What value should be placed in a
Q17: Assume that an integer array named intValues
Q18: The following statements apply to a Timer
Q20: Which of the following code segments sets
Q21: What is the best way to describe
Q22: Due to their similarities, it's easy to
Q23: Which of the following code segments will
Q24: The lowest possible subscript of an array