To minimize disk I/O in COBOL, it's essential to use ____________ techniques for file access.
- Direct
- Indexed
- Relative
- Sequential
Indexed file access techniques in COBOL involve using indexes to locate and retrieve records directly, reducing the need for sequential searches. This minimizes disk I/O by providing a more efficient way to access specific records without scanning the entire file sequentially.
Loading...
Related Quiz
- You are working on a COBOL application that deals with a hierarchical data structure, such as an organization's departments and employees. How would you use COBOL records and structures to model this hierarchy?
- The Data Division in COBOL is responsible for describing the structure and ________ of data items used in the program.
- COBOL allows the use of logical operators like _____ in conditional statements.
- In COBOL, what is the LEVEL number used for in the data description entry (FD)?
- A subprogram can have its own _____ section for local data.