The following entries appear in the WORKING-STORAGE SECTION:
01 DATE-TODAY.
05 YY PIC XX VALUE "90".
05 MM PIC XX VALUE "12".
05 DD PIC XX VALUE :31".
01 DATE-EDIT PIC XX/XX/XX.
MOVE DATE-TODAY TO DATE-EDIT.
(a) 901231
(b) 90/12/31
(c) 31/12/90
(d) 311290
Answer Posted / sakthivel kannan
The answer is (a) only
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How you can characterize tables in cobol?
Define cobol?
State the various causes of s0c1, s0c5 and s0c7.
How to print 10 to 1 if the input have only 10 digit number?
What is the usage of comp fields in cobol?
what is the use of outrecord?
What are the different types of condition in cobol and write their forms.
Give some examples of command terminators?
Mention the guidelines to write a structured cobol program?
In COBOL programming, what is PERFORM? What is VARYING?
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
Why did you choose to work with ibm mainframe cobol programming?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
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?