Each instruction in an assembly language program has the following fields. What is the correct sequence of these fields?, (A) Label field (B) Mnemonic field (C) Operand field (D) Comment field Choose the correct answer from the options given below:
Show Hint
Remember the sequence as 'Label → Mnemonic → Operand → Comment' for clarity in assembly instructions.
The correct sequence of fields in an assembly language instruction is: 1. Label field: Used for marking a location in memory. 2. Mnemonic field: Specifies the operation or instruction (e.g., ADD, SUB). 3. Operand field: Provides data or the address for the instruction to operate on. 4. Comment field: Used for adding descriptive comments for clarity.