Computer Science, asked by TbiaSamishta, 1 year ago

The elements of the array can be accessed in order of their subscript. State whether the statement is True (or) False And Justify it

Answers

Answered by Secondman
0

"True. Every element present in a array is accessed by using the elements' subscript in order.

For example, if a[5] is an array. Then an element from the array for instance, 3rd element can be accessed through a[2] (as the indexing starts with 0).

a[2] returns the third element in the array 'a' as the indexing is from '0'. Thus, elements are accessed by its subscript."

Similar questions