_____ variables in COBOL are those whose values are shared among all instances of a program.
- Common
- External
- Global
- Universal
Common variables in COBOL are those whose values are shared among all instances of a program. These variables are declared in a common area and can be accessed by multiple program modules.
Loading...
Related Quiz
- In COBOL, what are the advantages of using a structured error-handling approach over traditional methods?
- In a COBOL program for a bank, you need to determine the account type and apply specific rules based on the account type (e.g., savings, checking, or credit card). Which conditional statement is best suited for this complex decision-making process?
- When removing duplicate records from a COBOL file, you may use the _____ operation to merge duplicate entries.
- What is the difference between "ON SIZE ERROR" and "AT SIZE ERROR" in error handling?
- When declaring a table in COBOL, which clause specifies the number of occurrences?