Beginner Assembly Language
Q24 / 100

What are the major data sizes in x86 assembly?

Correct! Well done.

Incorrect.

The correct answer is A) byte(8), word(16), dword(32), qword(64)

A

Correct Answer

byte(8), word(16), dword(32), qword(64)

Explanation

In x86: byte=8 bits, word=16 bits, dword=32 bits, qword=64 bits. Instructions use size qualifiers: BYTE PTR, WORD PTR, DWORD PTR, QWORD PTR.

Progress
24/100