How many types of sorts are there in cobol?
Answer Posted / ghjkkj
Internal sort is handled by a cobol program using i/p file,work file and o/p file.
Internal sort is when you do any processing you need to recompile the cobol program
External sort is performed through jcl where you provide SORTIN and SORTOUT datasets and its easier to perform this sort as any changes, will require only submitting the jcl.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write a program to explain size error.
Can we change the password using ALTER? anyone tried and changed?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
How many bytes S(8) comp field occupy and its maximum value?
What are the pertinent COBOL
What is the use of intialize verb?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What are the various section in data division and briefly explain them.
Which division and paragraphs are mandatory for a COBOL program?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
What is comp-1 and comp-2?
What are different data types in cobol?
What are the different open modes available in cobol?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
I have a File that has duplicate records. I need only those records that occur more than thrice.?