Multiple choice technology mainframe

STARTBR command is used to

  1. Read the file in sequential order

  2. Write the file

  3. To establish the starting position in a file

  4. All of the above.

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

STARTBR establishes a starting position for sequential browsing of a VSAM file. After STARTBR, you use READNEXT to read records sequentially. STARTBR doesn't read or write by itself - it just positions the browse. READNEXT handles the actual reading.

AI explanation

The STARTBR (Start Browse) command in CICS establishes the starting position within a VSAM file from which subsequent READNEXT/READPREV browse commands will read sequentially. It doesn't itself return data or write records — it simply positions the browse pointer so sequential reads can begin from that point.