in Technology by

In multidimensional array mySubject, which of the following will allow assigning the value 100 in position 5 of the third

mySubject array?
a)mySubject[3][4] = 100
b)mySubject[5][3] = 100
c)mySubject[4][2] = 100
d)mySubject[2][4] = 100
e)mySubject[3][5] = 100

Please log in or register to answer this question.

1 Answer

0 votes
by

Answer:-mySubject[2][4] = 100

Related questions

...