Chapter 3 : Flow Control Flashcards

1
Q

What does Flow Control Statement does?

A
  1. To control the flow or execute of a program
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the 2 types Flow Control Statement?

A
  1. Entity Control
  2. Exit Control
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does Entry Control checks?

A
  1. Checks the condition before the actual code executes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does Exit Control checks?

A
  1. Checks the condition at the end or atlast
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

List out examples for Entry Control check?

A
  1. For Loop
  2. While Loop
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

List out examples for Exit Control check?

A
  1. Do-while Loop
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does Flow Control allows?

A
  1. Allows us to dictate what statements are to be executed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What method that assembly language provides for flow control? ( 2 )

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

List out 2 kinds of Jump statements

A
  1. Conditional Jumps
  2. Uncondional Jumps
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to create a program that loops the asterik ( * ) 80 times?

A

.model small
.stack 100h
.code
MAIN PROC
mov cx, 80 ; set counter to 80
mov ah,2 ; DOS function to display
mov dl, “*” ; character to display
top: int 21h ; call DOS interrupt
loop top ; repeat

     mov ah,4Ch    ; DOS termination
     int 21h             ; return to DOS MAIN ENDP end MAIN

top - is a variable name that

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

What is conditional jumps?

A
  1. Jump statements which moves control to another part of the program depending on the value of the flags
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is unconditional jumps?

A
  1. Jump statements which moves control to another part of the program regardless of the value of the flags
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How to create conditional jumps

A

.model small
.stack 100h
.code
MAIN PROC
mov bl, 80 ; set register to 80
mov ah,2 ; DOS function to display
mov dl,”*” ; character to display
top : int 21h ; call DOS Interrupt
dec bl ; decrease BL by 1
cmp bl,0 ; check if BL is zero
jne top ; repeat if not equal to 0

        mov ah, 4Ch             ; DOS terminate
        int 21h                      l return to DOS MAIN ENDP END MAIN
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the command for equal to?

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