WHICH OF THE FOLLWING STATEMENT IS USED FOR THE SKIP SEQUENTIAL FILE PROCESSING?
Reveal answer
Fill a bubble to check yourself
WHICH OF THE FOLLWING STATEMENT IS USED FOR THE SKIP SEQUENTIAL FILE PROCESSING?
SELECT
POINT
READ
GET
POINT is the EasyTrieve statement used for skip sequential file processing. It allows positioning to a specific record location in a file, enabling efficient access without reading all preceding records sequentially. SELECT, READ, and GET have different purposes in file operations.
In COBOL, the POINT statement is used with sequential (indexed/relative) files to reposition the file pointer, effectively skipping records without reading them into a record area. READ and GET actually retrieve a record's data, and SELECT is only used at file-definition time, so neither fits the 'skip without processing' behavior being asked about.