Multiple choice technology databases

Which one of the following DLI call statements is incorrect?

  1. CALL ‘CBLTDLI’ USING PARM-COUNT, FUNC-CODE, DB-PCB-MASK, IO-AREA, SSA-LIST.

  2. CALL ‘CBLTDLI’ USING FUNC-CODE, DB-PCB-MASK, IO-AREA.

  3. CALL ‘CBLTDLI’ USING FUNC-CODE, DB-PCB-MASK, SSA-LIST.

  4. CALL ‘CBLTDLI’ USING FUNC-CODE, DB-PCB-MASK, IO-AREA, SSA-LIST.

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

Option C is incorrect because it's missing the IO-AREA parameter which is required for most DLI operations. All valid DLI calls must include FUNC-CODE, DB-PCB-MASK, IO-AREA, and optionally SSA-LIST (Segment Search Arguments). Options A, B, and D include these required parameters in various valid combinations, making them syntactically correct.