Multiple choice technology programming languages

Indicate which of the following statement is not allowed when a relative file is opened to I-O mode and the ACCESS mode is RANDOM?

  1. READ

  2. WRITE

  3. REWRITE

  4. START

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

START statement is used to position a file at a specific record for sequential processing. When ACCESS MODE is RANDOM, records are accessed directly by key, making sequential positioning operations like START invalid. READ, WRITE, and REWRITE are all valid operations for RANDOM access mode on relative files.