Multiple choice technology mainframe

File status when attempted to write to a file that has been opened for input.

  1. 42

  2. 16

  3. 6

  4. 32

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

COBOL file status code 06 indicates an attempt to write to a file that was opened with INPUT mode (OPEN INPUT). Files opened for input are read-only, so write operations cause this specific error condition.