Ask Question
2 August, 09:13

The following data segment starts at memory address 0x3600 (hexadecimal)

. data

printString BYTE "Do not add decimal to hex",0

someBytes WORD 19 DUP (0)

moreBytes BYTE 10, 20, 30, 40, 50, 60, 70, 80, 90

questionAddr DWORD?

ignoreMe WORD?

What is the hexadecimal address of questionAddr?

+3
Answers (1)
  1. 2 August, 11:55
    0
    0*3604

    Explanation:

    Since the first instruction is byte addressable so, it will take 1 hexadecimal address so, 0*3600 is the address of printString.

    Second instruction is word addressable so, it will take 2 instructions. So, 0*3601 and 0*3602 will be the address of someBytes.

    Third instruction is also in byte so, it will also take 1 instruction. So, 0*3603 will be the address of moreBytes

    At the end, when we will come to questionAddr uptil now 4 hexadecimal addresses will already be taken that are from 0*3600 to 0*3603 so, questionAddr will take address 0*3604.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The following data segment starts at memory address 0x3600 (hexadecimal) . data printString BYTE "Do not add decimal to hex",0 someBytes ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers