If you declare an array as int [, ] anArray = new int [5, 3]; you can
Question:
If you declare an array as int [, ] anArray = new int [5, 3]; you can double the value stored in anArray[2, 1] with the statement:
a. anArray[2, 1] = anArray[5, 1] * 2;
b. anArray = anArray * 2;
c. anArray[2, 1] *= anArray[2, 1] * 2;
d. anArray[2, 1] *= 2;
e. none of the above
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: