1.What is the default print format in cobol?
Answers were Sorted based on User's Feedback
Answer / lakshmisudha
dump is correct answer when if u r using IDCAMS utility
print command in Vsam in that time DUMP is correct
in cobol DEFAULT IS CORRECT
| Is This Answer Correct ? | 2 Yes | 1 No |
how can we find total no of records in a file ....is there any utility......?
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?
How do you define a variable of COMP-1? COMP-2?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
What is "Call by content" and "call by reference"?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
What are the different rules of SORT operation?
What is COMP SYNC?
When is inspect verb is used in cobol?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
Explain how to differentiate call by context by comparing it to other calls?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?