Beginner Assembly Language
Q3 / 100

What does the MOV instruction do in x86 assembly?

Correct! Well done.

Incorrect.

The correct answer is B) Copies a value from source to destination

B

Correct Answer

Copies a value from source to destination

Explanation

MOV dst, src copies the value from src to dst. It does not clear the source. For example, MOV EAX, 5 loads 5 into EAX.

Progress
3/100