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

Questions & AnswersCategory: Programming LanguageIn a multidimensional array mySubject, which of the following option will allow assigning the value 100 in position 5 of the third mySubject array?
Adam asked 2 years ago

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

a. mySubject[5][3] = 100

b. mySubject[2][4] = 100

c. mySubject[4][2] = 100

d. mySubject[3][4] = 100

e. mySubject[3][5] = 100