127k views
2 votes
Which of the following will display a string whose address is in the dx register: a.

mov ah, 9h
int 21h

b.
mov ah, 9h
int 22h

c.
mov ah, 0h
int 21h

d.
None of these

e.
mov ah, 2h
int 20h​

1 Answer

2 votes

Answer:

a)

Step-by-step explanation:

Function 9 of interrupt 21h is display string.

Which of the following will display a string whose address is in the dx register: a-example-1
User Rakesh Rangani
by
5.3k points