Consider the following code snippet
A0000-MAIN-PARA.
EXEC CICS IGNORE CONDITION
MAPFAIL
END-EXEC.
MOVE DFHCOMMAREA TO WS-COMMAREA.
IF EIBCALEN = 0
MOVE LOW-VALUES TO ADDMAPO
PERFORM B000-SEND-INMAP-PARA
* MOVE 'FIRSTTIME' TO WS-COMMAREA
PERFORM B003-RETURN-PARA
ELSE
PERFORM B002-SEND-RECIEVE-MAP-PARA
EVALUATE EIBAID
WHEN DFHENTER
PERFORM BOO8-CALC-PARA
PERFORM B003-RETURN-PARA
WHEN DFHPF3
PERFORM BOO7-EXIT-PARA
WHEN DFHPF1
PERFORM BOO7-HELP-PARA
PERFORM B003-RETURN-PARA
What is the output of the above code snippet.
Note: MOVE 'FIRSTTIME' TO WS-COMMAREA is a comment. Assume there are no syntax errors in the above code snippet.
Program runs normally and gives the output
Junk value gets moved to DFHCOMMAREA and code runs normally and gives the output
Nothing gets moved to DFHCOMMAREA and EIBCALEN will always be 0, so it does not compute the results