Question
11. The following statement permits assembly if the symbol Win32 has been defined: IFDEF Win32 a. True b. False 12. The following statement permits assembly
11. The following statement permits assembly if the symbol Win32 has been defined:
IFDEF Win32
a. True
b. False
12. The following statement permits assembly if arg1 is exactly the same as arg2? (case-sensitive comparison):
IFIDN
b. False
13. The following statements create five uninitialized DWORD variables in which each variable name is a member of the following list: monday,tuesday,wednesday,thursday,friday:
FOR varName,
DWORD varName <>
ENDM
a. True
b. False
14. The following statements exit a macro if the count argument is blank:
IFB
EXITM
ENFIF
a. True
b. False
15. The following macro moves any 32-bit memory operand to any other 32-bit memory operand:
mMove32 MACRO destination,source
push eax
mov eax,source
mov destination,eax
pop eax
ENDM
a. True
b. False
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started