Exam 1 Study Assembly

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/63

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

64 Terms

1
New cards

High-level languages have a one-to-one relationship with Assembly language. (T/F)

(False) High-level languages have a one-to-many relationship with Assembly language.

2
New cards

x86 processors running under 32-bit and 64-bit versions of Microsoft Windows

True

3
New cards

An effective way to explain how a computer's hardware and software are related is called the virtual machine concept.

True

4
New cards

Which utility programs below is NOT an assembler?:


MASM

 

NASM

 

GAS

 

All answers are correct

 

TASM

All answers are correct!

5
New cards

To run a high-level language into a native machine language, we may either interpret or translate.

True

6
New cards

In this course, we will use Microsoft Visual Studio as the IDE and run on the Windows Systems ONLY.

True

7
New cards

Assembly language is portable as long as running on the same hardware device (same type processor).

(False) Assembly language is portable as long as running on the same hardware device (same type processor).

8
New cards

Which statement below is NOT true?

 

a doubleword is 2 bytes

 

1 byte = 8 bits

 

The MSB of a negative signed binary number is 1

 

The LSB of an odd number is always 1

a doubleword is 2 bytes

9
New cards

The control unit (CU) coordinates the sequencing of steps involved in executing machine instructions.

True

10
New cards

In Real-address mode, multiple programs can run at the same time, but they can only address physical memory (from the hardware devices)

(False) They can access virtual memory (System memory) too

11
New cards

The arithmetic logic unit performs addition, subtraction, multiplication, and division operations.

False

12
New cards

The Zero flag is clear when the result of an arithmetic operation is zero.

(False) The Zero flag is clear when the result of an arithmetic operation is NOT zero.

13
New cards

The lower half of the RCX register is called EBX.

(False) The lower half of the RCX register is called ECX.

14
New cards

In 64-bit mode, you can use three more general-purpose registers than in 32-bit mode.

False

15
New cards

The Carry flag reflects the status of an unsigned arithmetic operation.

True

16
New cards

When running in native 64-bit mode, processors do not support 16-bit Real Mode.

True

17
New cards

Data travels along a bus with n bits running in parallel, where the bus is n bits wide.

True

18
New cards
19
New cards

The Basic Input-Output System is a collection of low-level subroutines that communicate directly with hardware devices.

True

20
New cards

An identifier in assembly language may only contain letters and digits.

False

21
New cards

The EQU directive permits a constant to be redefined at any point in a program.

(False) The EQU directive can't be redefined at any point in a program.

22
New cards

An object file is commonly executable by the operating system. 

(False) An object file isn’t quite ready to execute.

23
New cards

A string literal must be enclosed in double quotes.

(False) A string literal can be enclosed in single or double quotes.

24
New cards

A code name must end with a colon (:)

True

25
New cards

A listing file contains a copy of the program's source code, the numeric address of each instruction, and a symbol table. It also display the machine code bytes for the program.

True

26
New cards

The .DATA directive must always occur before the .CODE directive.

False

27
New cards

Identifiers are by default, case sensitive.

(False) Identifiers are NOT case sensitive.

28
New cards

In the following statement, EAX is called the source operand:

mov EBX, EAX

True

29
New cards

The SDWORD directive is used when defining signed 32-bit integers.

True

30
New cards

What is the EAX value after the following instruction?

.data
arrayD DWORD 10h, 20h, 30h, 40h

.code
MOV EAX, [arrayD + 3 ]

00002000h

31
New cards

When you use MOVZX to move a 16-bit or an 8-bit memory operand into a 64-bit register, the upper bits of the destination operand are cleared.

True

32
New cards

The SUB instruction requires the source operand to be no larger than the destination operand.

False

33
New cards

Write one instruction to move the value of  30h from the following data into a register

.data
arrayW WORD 10h, 20h, 30h, 40h

mov ax, [arrayW + 4]

34
New cards

Which instruction below can NOT  move the value of  30h from the following data into EAX?

.data
arrayW WORD 10h, 20h, 30h, 40h

MOV EAX, [arrayW + 4]

35
New cards

Write one instruction to make 10h below become 11h

.data
arrayW WORD 10h, 20h, 30h, 40h

add arrayW, 1

INC arrayW

ADD ARRAYW, 1

ADD arrayW, 1

36
New cards

The MOV instruction permits a move between two 8-bit memory operands, as long as one operand uses the BYTE PTR operator.

(False) The MOV instruction should contain at least one register.

37
New cards

Which status flag is set after the following instructions?

MOV  AX, 0FFFFh
INC  AX

Zero Flag

38
New cards

The SAHF instruction copies the CPU status flags to the AH register.

False

39
New cards

To move -4 into EDX register, we should do, 

movsx EDX, -4

(False) to move a constant value to the register, just do MOV instead of MOVSX

 

mov EDX, -4

40
New cards

Suppose BX and DX both contain positive integers. If adding them produces a negative result, the Overflow flag will be set.

True

41
New cards

The following instruction will assemble correctly: 

DEC  BYTE PTR [edi]

True

42
New cards

The following statement will assemble without errors:

mov DWORD PTR [eax], 1234h

True

43
New cards

The following instructions will set the Overflow flag:

mov al, D7h

add al, 75h

(False) To add a positive integer and a negative integer will never set the overflow flag

44
New cards

The Overflow flag will never be set when subtracting a positive integer from a negative integer.

False

45
New cards

The following instructions will set the Overflow flag:

mov al, +125

sub  al, -5

True

46
New cards

Given the following statements, what are the values in AX and ECX?

    MOV AX, 0
    MOV ECX, 10
L1: INC AX
    LOOP L1

AX = 10

ECX = 0

47
New cards

In the 64-bit environment, the ECX is the counter used in a LOOP instruction.

(False) In the 64-bit environment, the RCX is the counter used in a LOOP instruction.

48
New cards

If AL contains +127 and you add 3 to AL, the carry flag will be set.

False

49
New cards

Given the following statements, what are the values in AX and ECX?

    MOV AX, 0
    MOV ECX, 10
L1: INC AX
    JMP L1

AX = unknown

ECX = 10

50
New cards

In a stack, the first value pushed on a stack is the last one to be removed.

True

51
New cards

A nested procedure call occurs when a called procedure calls another procedure before the first procedure returns.

True

52
New cards

The PUSH instruction copies a value from the stack to an operand before decrementing the stack pointer.

(False) It is the pop operation.

53
New cards

The runtime stack is supported by the computer's processor.

True

54
New cards

The EBP register points to the last value pushed on the runtime stack.

(False) The ESP register points to the last value pushed on the runtime stack.

55
New cards

When the POP instruction executes, the ESP register is incremented after the value it points to is copied from the stack.

True

56
New cards

In 32-bit mode, immediate values pushed on the stack are always 32 bits long.

True

57
New cards

The WriteDec procedure does not display a plus sign.

True

58
New cards

The USES operator, coupled with the PROC directive, lets you list the names of all registers modified within a procedure, and the original values will be pushed into and pop from the run-time stack.

True

59
New cards

By default, labels are visible only within the procedure in which they are declared.

True

60
New cards

From Irvine 32 library, which procedure below we should use to read a signed integer from the console input?

ReadInt

61
New cards

From Irvine 32 library, which register below we should use to refer to the location of the string we wanted to display in the console by using the WriteString procedure?

EDX

62
New cards

From Irvine 32 library, which procedure below we use to display the registers and status flag values in the console?

DumpRegs

63
New cards

From Irvine 32 library, which register below we should use to refer to the offset of the array we wanted to display in the console by using the DumpMem procedure?

ESI

64
New cards

From Irvine 32 library, which register below we should use to save the background and foreground color values by using the SetTextColor procedure?

EAX