0. Match List-I with List-II and selected the correct answer using the codes given below the lists :
| List-I | List-II |
| A. A[I] = B[J] | 1. Indirect addressing |
| B. while [*A++] | 2. Indexed addressing |
| C. int temp = *x; | 3. Autoincrement |
Codes :
| A | B | C | |
| a | 3 | 2 | 1 |
| b | 1 | 3 | 2 |
| c | 2 | 3 | 1 |
| d | 1 | 2 | 3 |
| 1. A[1] = B[J] | Indexed Addressing Mode |
| 2. While [*A++] | Autoincrement |
| 3. int temp = *x; | Indirect Addressing Mode |