Beginner Assembly Language
Q34 / 100

What is the .data section?

Correct! Well done.

Incorrect.

The correct answer is B) The section for initialized global and static data

B

Correct Answer

The section for initialized global and static data

Explanation

The .data section holds initialized variables like msg db "Hello", 0. The .bss section holds uninitialized data reserved with RESB/RESW/RESD.

Progress
34/100