RENAME clause takes new SPACE in memory.TRUE or FALSE?
a)TRUE
2)FALSE
Answer Posted / siri
FALSE...
RENAME CONSEPT IS REUSE THE SPACE IN THE GROUP...SO DOES NOT TAKE ANY SPACE....
01 GROUP1
05 EMP-ID PIC 9(9)
05 EMP-NAME PIC X(9)
01 GROUP2
05 EMP-SAL PIC 9(9)
05 EMP-ADD PIC X(10)
66 GROUP3 RENAMES EMP-ID THRU EMP-ADD.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
What are the different open modes available in cobol?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
Which division and paragraphs are mandatory for a COBOL program?
Define static linking and dynamic linking.
What the difference is between continue and next sentence?
What is the difference between external and global variables in COBOL?
what is difference between cobol and cobol/400
Name the divisions, which are available in a cobol program?
Write a program that uses move corresponding.
What is the difference between goback, stop run and exit program in cobol?
Discuss about changing dataset name in proc.
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.
What is the difference between next sentence and continue in cobol programing language?
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?