RENAME clause takes new SPACE in memory.TRUE or FALSE?
a)TRUE
2)FALSE
Answers were Sorted based on User's Feedback
Answer / mayank rastogi
FALSE.
The RENAMES clause does not use any extra space within the program as all it is doing is supplying a replacement name for use in a data definition attached to the program.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / rajesh
False.
It will take the space of the redefined variable when used.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / shiva
REDEFINES AND RENAMES ARE USED FOR REUSING STORAGE SPACE....
HENCE RENAME DOES NOT USE NEW SPACE IN MEMORY
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amar
false.
because rename clause is used for rename the
variable/identifier/data name.
redefines clause will take extra space. because we define
data names tow times in working storage section.
| Is This Answer Correct ? | 0 Yes | 0 No |
i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,copy,write operations).plz give me details of all posible JCL utilities?
How is sign stored in a comp-3 field?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
what are the diferences b/w sub-script and index?
Difference between ps, esds
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
Re: 01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
in the TIME parameter we r giving hours r minutes
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
what is the difference between Plan & package?
TO abend the data sholud open in which mode? 1.new 2.old 3.mod 4.shr
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above