Interrupt MCQ Flashcards
interruptsi nt 21h is used for Reading Character from keyboard using mov….. → input on al write to screen
ah, 01h
For moving curser to column 7 using int 10h we put 7 in ….
1)dh 2)dl 3)al 4)ah
2
For printing a character on the screen, we use int 21h with … in ah
A)1 B)2 C)3 D)4
b
For print a character o the screen using int 21h we move letter to …. Register
A)al B)dl C)dh D)ah
b
Interrupts int 21h is used for Reading Character from keyboard using mov …… → input on al do
not write to screen (Silent input)
ah, 07h
For reading from keyboard using int 21h we put …. In ah, value won’t be printed on the screen A)4 B)5 C)6 D)7
d
For moving curser to row 2 using int 10h we put 2 in ….
1)dh 2)dl 3)al 4)ah
1
Using int 10h for printing a character on screen we put letter in … register
1)al 2)bl 3)dl 4)dh
1
Interrupts ….. is used for moving curser on the screen using mov ah, 02h → DH = row. DL = column
int 10h
Interrupts must start with ….. then following with …….code → int + value
int, hexadecimal
For printing string on screen using int 21h message most end with ….
A)@ B)# C)$ D)&
c
For reading from keyboard using int 21h we put …. In ah, value will be printed on the screen A)1 B)2 C)3 D)4
A
Interrupts is like …..In programing language, and …… is like methods In the …..
class ,sub-function, class
Using int 10h for print a character on the screen we put …. In Ah
1) c 2) d 3) e 4) f
3
Interrupts int 21h is used for Print Character on the screen mov ….→character input in Dl
AH,2