In WHICH access mode records are accessed either sequentially or randomly
-
SEQUENTIAL
-
RANDOM
-
DYNAMIC
-
NONE OF THE ABOVE
C
Correct answer
Explanation
In COBOL file access modes, DYNAMIC access allows records to be accessed either sequentially (using READ NEXT) or randomly (using READ with KEY). SEQUENTIAL mode only permits sequential access. RANDOM mode only permits random access by key. DYNAMIC combines both capabilities, making it the correct answer when both access types are needed.