1. Assume that EAX contains ff ff ff 51 and the doubleword referenced by value contains ff ff ff f1.

a. True
b. False.

2. The conditional jump statement add eax, value js dest causes a jump to the label dest.

a. True
b. False

Relax

Respuesta :

Answer:

1. True

2. False

Explanation:

given data

EAX contains =  ff ff ff 51

doubleword referenced = ff ff ff f1

conditional jump add = eax

solution

1st statement is true

but 2nd statement is false

as here

  • js or jne instruction is the conditional jump that is follow a test
  • It jump to the specified location when  previous instructions are set the SF (Sign Flag) .