Ask Question
17 July, 20:37

Index addressing is for traversing arrays.

True

False

+5
Answers (1)
  1. 17 July, 20:51
    0
    False.

    Explanation:

    Index addressing is not for only traversing the arrays but to also access the element, manipulate them. Though indexing is also used in traversing but it is not solely for that. Indexing in an array starts from 0 to size-1.

    for example:-

    We have an array a of size 10. So to access the element at position 6. We have to write.

    a[5];

    Manipulating it

    a[5]=6;
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Index addressing is for traversing arrays. True False ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers