Computer Science - Operating Systems Concepts - Discussion

Discussion Forum : Operating Systems Concepts - Section 1 (Q.No. 20)
20.
Which of the following addressing modes, facilitates access to an operand whose location is defined relative to the beginning of the data structure in which it appears?
ascending
sorting
index
indirect
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Varun said:   8 years ago
Logically it must be structure that stores the memory location; "location is defined relative to the beginning of the data structure". This is also known as direct addressing and the option nearest to a structure attribute that stores location is "index".
(1)

Ash said:   9 years ago
What is meant by Index?
(1)

Chetan said:   1 decade ago
Index, because it is just like an array.

Shekhar said:   1 decade ago
Just want to add in Pravi's comment that:

Like in books index is given and by referring to which you can directly open that particular page, similarly index is used for addressing elements in data structure.

Pravi said:   1 decade ago
It is also known as direct addressing mode. When you know the right offset of the address of the memory you need. For example if you have an array, then if you need the N-th element of the array, you just add N sizes of the variables to the starting address of the array.

As an oposite it is the sequential addressing mode (or indirect) where you cant calculate the exact address by just offset of the beginning. If the size of each element in the array is not known (for example if you have N null terminated string which size is not known) you need to traverse all the N-1 elements until you find the one you need - the N-th one :)

Post your comments here:

Your comments will be displayed after verification.