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


b. intFirstArray and intSecondArray reference the same array in memory

Computer Science & Information Technology

You might also like to view...

Apache HTTP Server is Microsoft's Web server.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If you implement a stack using an array, where should the bottom element of the stack be placed?

a. at the end of the array b. mid array for a binomial search c. at the first element of the array d. it doesn’t matter

Computer Science & Information Technology

When you insert a table, it is automatically aligned at the:

A) center of the page horizontally. B) right margin. C) left margin. D) position of the insertion point.

Computer Science & Information Technology

A Web page that allows users to enter information on a Web form is considered to be a(n) ____________________ Web page.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology