• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back

The instruction:xor ax , axmakes ax equal to:

0

True or False?


The destination operand of the OR instruction cannot be a memory operand.

False

The TEST instruction always alters the destination operand.

False

For the following code segment:


mov AL, 10101010b


or AL, 10101011b




What value will reside inside AL?

10101011

True or False?


The Parity Flag (PF) denotes if the number of bits that are on in the operand is an even number.

True

For the following code segment:


mov AL, 11010101b


and AL, 11110000b




What value will reside inside AL?

11010000b

For the following code segment:


mov AL, 10101010b


or AL, AL




What value will reside inside AL?

10101010b

Logical and bitwise operation commands do not affect the flags register.

False

JA, JB, JAE, JNE are designed to work with signed comparisons.

False

LOOPZ and LOOPE instructions are useful when scanning an array for the first element that does not match a given value

True