Multiple choice technology mainframe

The below format of the CICS command is used in which application program? EXEC CICS function[option[(arg)]]... ;

  1. COBOL

  2. C and COBOL

  3. PL/I

  4. COBOL and PL/I

  5. C and PL/I

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

The CICS command format 'EXEC CICS function[option[(arg)]]...' with a semicolon at the end is specific to PL/I syntax. In C language, CICS commands don't use the EXEC keyword prefix or semicolon termination - they use different syntax like 'EXEC CICS' functions directly. In COBOL, the format is different without semicolons. The given format matches PL/I conventions.