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...

Without DHCP Relay configured, hosts DHCP requests ________

A) Do not leave the local subnet B) Only pass through the default gateway C) Only lease an IP address D) Timeout quickly

Computer Science & Information Technology

Excel gives you the ability to apply number formats to your values. Please describe the Accounting Number Format, Percent Style, and Comma Style formats and give an example of how a number would appear in each case.

What will be an ideal response?

Computer Science & Information Technology