PCLP2 Lab 06 Recap

PCLP2 Lab 06 Recap

University

9 Qs

quiz-placeholder

Similar activities

pplloop

pplloop

University

12 Qs

3710 Ch 6 and 7

3710 Ch 6 and 7

University

7 Qs

Arrays

Arrays

KG - University

10 Qs

JavaScript Quiz | For Beginners

JavaScript Quiz | For Beginners

1st Grade - University

10 Qs

IOTA : Web Development Bootcamp Quiz 3

IOTA : Web Development Bootcamp Quiz 3

University

10 Qs

C++ Quiz

C++ Quiz

University

10 Qs

assemblyLanguageChap3

assemblyLanguageChap3

University

10 Qs

PCLP2 Lab 08 Recap

PCLP2 Lab 08 Recap

University

7 Qs

PCLP2 Lab 06 Recap

PCLP2 Lab 06 Recap

Assessment

Quiz

Computers

University

Hard

Created by

Anonymous Anonymous

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

"En Taro Adun" is a phrase used by

the Protoss, in Starcraft

the Tauren, in World of Warcraft

the Dothraki, in Game of Thrones

the Borgs, in Star Trek

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What is the effect of the following code sequence: "mul ebx"

The content of EBX is multiplied with the content in EAX

The content of EBX is multiplied with the content in ECX

The result is stored in EBX:EAX

The result is stored in EDX:EAX

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "var: dd 10, 11, 12, 13"

"var" is an array, containing the values 10, 11, 12, 13, each stored on 4 bytes

"var" is an array, containing the values 10, 11, 12, 13, each stored on 2 bytes

"var" is a variable with the value 10, stored on 4 bytes

"var" is a variable with the value 13, stored on 4 bytes

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "array: resd 10; var: equ $-array"

var is equal to 40

var is equal to 10

var stores the address of "array"

var stores the last element of "array"

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "mov eax, [array + ecx]"

eax = array[ecx];

eax = &array[ecx];

array[ecx] = eax;

array[0] = eax;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "mov [array], [array + ecx]"

Error

array[0] = array[ecx];

array[ecx] = array[0];

array = array[ecx];

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "mov [array], 0"

Error

array[0] = 0;

array = 0;

array[1] = 0;

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of the following code sequence: "lea eax, [array + ecx]"

eax = array[ecx];

eax = &array[ecx];

array[ecx] = eax;

array[0] = eax;

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of EDX after the following code sequence: "mov dh, FFh"

0xFF00

0xFF

The code doesn't change EDX

Error

0xFF0000