int [ ] anArray = new int [10];int [ ] anotherArray = {6, 7, 4, 5, 6, 2, 3, 5, 9, 1};
Which of the following would copy all of the elements from anotherArray to anArray?

A. Array.Copy(anotherArray, 0, anArray, 0, 10);
B. Array.Copy(anotherArray, anArray)
C. anArray = anotherArray
D. all of the above

Answer: A

Computer Science & Information Technology

You might also like to view...

Each chart type has predefined layouts that you can quickly apply to your chart

Indicate whether the statement is true or false

Computer Science & Information Technology

To nest layer groups, drag a layer group on top of another layer group in the ____ panel.

A. Nest B. Adjustments C. Layers D. Tools

Computer Science & Information Technology