Memory location 2000H has the word 5000H stored in it. What does each location contain after
INC BYTE PTR[2000H]. Also after DEC WORD PTR[2000H]
If DX contains 00EEh and AX contains0980 what is the result of:
MOV BX,0F0h
DIV BX
What is the final value of AL in the series of instructions?
MOV AL,27h
MOV BL,37h
ADD AL,BL
DAA
If AL contains 55h and BL contains AAh, what is the result of
AND AL,BL
OR AL,BL
XOR BL,AL
Register AX,BX,CX,DX contain 1111h,2222h,3333h,4444h, what are the contents of each register after this sequence of instructions
PUSH AX
PUSH CX
PUSH BX
POP DX
POP AX
POP BX