RENAME clause takes new SPACE in memory.TRUE or FALSE?
a)TRUE
2)FALSE
Answers were Sorted based on User's Feedback
Answer / 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 |
How to read records which is in sequential file in reverse order ? Exp. 1 2 3 4 5 . i want 5 4 3 2 1?please clear my doubt any one
In file1 have 80 records are like d1,d2,d3......D80. File2 have 1000records are like a1d1,a1d2,a3d3.....Etc. I want matching records in file3 ? Plse tell me the matching logic???I want answer only in cobol ?Not using any tool or jcl?
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
What is the difference between next sentence and continue in cobol programing language?
How do you define a variable of comp-1 and comp-2?
is it possible to rename 01 level?
01 a pic s9(5) value '-12345' how it will be stored
What is the linkage section?
What is the difference between Perform para and perform asaection in cobol?
) How do u handle errors in BMS macro?
What is amode(31)
Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.