Ask Question
18 June, 23:06

Index addressing is for traversing arrays.

True

False

+2
Answers (1)
  1. 18 June, 23:07
    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?
Find an answer to your question 👍 “Index addressing is for traversing arrays. True False ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers