Interrupt MCQ Flashcards

1
Q

interruptsi nt 21h is used for Reading Character from keyboard using mov….. → input on al write to screen

A

ah, 01h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

For moving curser to column 7 using int 10h we put 7 in ….
 1)dh 2)dl 3)al 4)ah

A

2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

For printing a character on the screen, we use int 21h with … in ah
 A)1 B)2 C)3 D)4

A

b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For print a character o the screen using int 21h we move letter to …. Register
 A)al B)dl C)dh D)ah

A

b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Interrupts int 21h is used for Reading Character from keyboard using mov …… → input on al do
not write to screen (Silent input)

A

ah, 07h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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

A

d

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

For moving curser to row 2 using int 10h we put 2 in ….
 1)dh 2)dl 3)al 4)ah

A

1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Using int 10h for printing a character on screen we put letter in … register
 1)al 2)bl 3)dl 4)dh

A

1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Interrupts ….. is used for moving curser on the screen using mov ah, 02h → DH = row. DL = column

A

int 10h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Interrupts must start with ….. then following with …….code → int + value

A

int, hexadecimal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

For printing string on screen using int 21h message most end with ….
 A)@ B)# C)$ D)&

A

c

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

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

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Interrupts is like …..In programing language, and …… is like methods In the …..

A

class ,sub-function, class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Using int 10h for print a character on the screen we put …. In Ah
 1) c 2) d 3) e 4) f

A

3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Interrupts int 21h is used for Print Character on the screen mov ….→character input in Dl

A

AH,2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Interrupts ….. is used for printing character using mov Ah, 0eh → letter in al

A

int 10h

17
Q

For printing string on the screen using int 21h we put … in ah
 A)7 B)8 C)9 D)10

A

c

18
Q

For moving curser on the screen using int 10h we put …. In Ah
 1)1 2)2 3)3 4)4

A

2