Question: 8) Use this information to answer questions # 8 - 10. Given the following MASM data segment declarations: .data list DWORD 30 DUP(?) matrix DWORD
8) Use this information to answer questions # 8 - 10. Given the following MASM data segment declarations: .data list DWORD 30 DUP(?) matrix DWORD 20 DUP(10 DUP(?)) secure BYTE 42 DUP(0) values DWORD 651 ; decimal string BYTE "Have a wonderful summer!",0 Assume that the base address of list is 0x1150. What is the hexadecimal address of values? (Note: do not use the '0x' prefix or the 'h' suffix)
(Yes I know this will only accept digits 0-9. Take that as a hint, and ignore the .0000)
9) In a high-level language, the 25th element of list is referenced as list[24]. What is the hexadecimal address of list[24] ?
10) In a high-level language, the 3rd column of the 8th row of matrix is referenced as matrix[7][2]. What is the hexadecimal address of matrix[7][2] ?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
