adspace
Answer Posted / Gaurava Singh Yadav
In COBOL, Table Spaces are areas in a program that contain data of the same type and structure. There are two types of Table Spaces: Static and Dynamic.n
1. Static Table Space:n- Defined within the DATA DIVISION before the WORKING-STORAGE SECTION.n- Allocated a fixed size during compilation.n- Initial values can be provided for each element during declaration.n- Cannot be redefined or resized during program execution.n
2. Dynamic Table Space:n- Defined within the WORKING-STORAGE SECTION.n- Allocated memory dynamically during program execution.n- Initial values are not provided during declaration.n- Can be redefined or resized during program execution.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers