Computer Science - Operating Systems Concepts - Discussion

Discussion Forum : Operating Systems Concepts - Section 1 (Q.No. 40)
40.
In which addressing mode the effective address of the operand is the contents of a register specified in the instruction and after accessing the operand, the contents of this register is incremented to point to the next item in the list?
index addressing
indirect addressing
auto increment
auto decrement
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
3 comments Page 1 of 1.

Amar said:   9 years ago
Is there auto increment addressing?

Nowaira said:   9 years ago
An auto increment is such a mode in which once a memory space is accessed it automatically goes to the next one. Or automatically increment in the value of its address.

For example in arrays:
int a[10];
for(i=0;i<=9;i++)
{
i++;
}

Uzma said:   1 decade ago
Please explain auto increment addressing mode.

Post your comments here:

Your comments will be displayed after verification.