Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

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.

5796


What are the different open modes available in cobol?

1248


INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?

921


Which division and paragraphs are mandatory for a COBOL program?

1335


Define static linking and dynamic linking.

1272


What the difference is between continue and next sentence?

1221


What is the difference between external and global variables in COBOL?

1544


what is difference between cobol and cobol/400

23082


Name the divisions, which are available in a cobol program?

1296


Write a program that uses move corresponding.

1208


What is the difference between goback, stop run and exit program in cobol?

1648


Discuss about changing dataset name in proc.

1296


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.

1501


What is the difference between next sentence and continue in cobol programing language?

1278


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?

1695