using redefine can you redefine lower variable size to
higher variable size?
Answer Posted / snehatechm
YES
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How do you reference the following file formats from cobol programs?
how do you reference the printer file formats from cobol programs
what is difference between cobol and cobol/400
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
Write a cobol program making use of the redefine clause.
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
Differentiate between structured cobol programming and object-oriented cobol programming.
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
What are the pertinent COBOL
Write a program to explain size error.
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
What is a scope terminator give example?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?