Page 1 of 1

7. Given the following code, if the user is prompted to enter a text and he entered "ABC", what is the offset of the "C"

Posted: Thu Jun 02, 2022 8:33 am
by answerhappygod
7 Given The Following Code If The User Is Prompted To Enter A Text And He Entered Abc What Is The Offset Of The C 1
7 Given The Following Code If The User Is Prompted To Enter A Text And He Entered Abc What Is The Offset Of The C 1 (13.57 KiB) Viewed 11 times
7. Given the following code, if the user is prompted to enter a text and he entered "ABC", what is the offset of the "C" character in memory? 1 DATA DRG 1200H DATA1 DB 6,7,6 DUP (FF) MOV AH,0AH MOV DX,OFFSET DATA1 INT 21H A. 1200H B. 1201H C. 1202H D. 1203H 22 4 .CODE