- 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 9 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"
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
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"
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