Multiple choice technology programming languages

What is the function of EF1READ?

  1. (1) It reads a record from the internal Record.

  2. (2) Reads a record from the external file and checks the file status code

  3. (3) The main program, which calls all the subprograms and then verifies the contents of a record area

  4. (4) Reads a record from the external file,checks the file status code and writes the same record into the external file.

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

Based on the naming (EF1 + READ), EF1READ reads a record from an external file and checks the file status code to verify the read operation succeeded. Option A incorrectly mentions internal records. Option D incorrectly adds write operations (that would be a read-write function). Option C describes a main program, not a read function.