in CO and Architecture retagged by
2,972 views
9 votes
9 votes

The most appropriate matching for the following pairs :

$\begin{array}{clcl}  \text{X.} & \text{Indirect Addressing} & \text{i.} & \text{Loop} \\  \text{Y.} & \text{Immediate Addressing} & \text{ii.} & \text{Pointers} \\  \text{Z.} & \text{Auto Decrement Addressing} & \text{iii.} & \text{Constants} \\  \end{array}$

  1. $\text{X-iii, Y-ii, Z-i}$
  2. $\text{X-ii, Y-iii, Z-i}$
  3. $\text{X-iii, Y-i, Z-ii}$
  4. $\text{X-ii, Y-i, Z-iii}$
in CO and Architecture retagged by
by
3.0k views

1 comment

Option b is right
1
1

2 Answers

6 votes
6 votes
Best answer
X: Indirect Addressing - Pointers

Y: Immediate Addressing - Constants

Z: Auto Decrement Addressing  - Loop
selected by
0 votes
0 votes

Indirect addressing:
Indirect addressing means that the address of the data is held in an intermediate location so that the address is first 'looked up' and then used to locate the data itself.


Immediate addressing:
Immediate Addressing. An immediate operand has a constant value or an expression. When an instruction with two operands uses immediate addressing, the first operand may be a register or memory location, and the second operand is an immediate constant. 

Auto increment or decrements: can be one by using loops.

Answer:

Related questions