What are the different data types available in COBOL?
Answers were Sorted based on User's Feedback
Answer / vampire
numeric -9
numeric edit---+,-,cr,db,$,b,z,*,v
non numberic----a,x,g
exclusive sets -----+,-,cr,db,$,b,z,*,v
| Is This Answer Correct ? | 6 Yes | 1 No |
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
What are decleratives in COBOL ?
In EBCDIC, how would the number 1234 be stored?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
What is the default value of DISP for temp datasets
Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which can handle 5000 records but now we have to compensate 20000 records with the same array? how to handle the situation.
Syntax for JCLLIB & JOBLIB???
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
how to change picture class of copy book variable inside program?
Explain about different table spaces.
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.