• Give an array named array1 with the values 1000h, 2000h, 3000h, 4000h, 5000h and another array named array2 with the values 11111h, 22222h, 33333h, 44444h, 55555h. Use a loop to swap the nth position elements from array1 and array2. (In-Direct Addressing)
• Create a loop that that exchanges element i with i + 1, i + 2 with i + 3, and so on … i + (n-1) with i + n. The array of elements is given: (In-Direct Addressing) array DWORD 1, 2, 3, 4, 5, 6, 7, 8, 9, 10