what is internal sort and external sort ?
which is preferable ?
Answers were Sorted based on User's Feedback
Answer / tejas sheth
Hi
For internal sort you need to code a program by specifying
the sort criteria and that the program need to be compiled
and linked.
But in case of External sort there is no need for coding the
program.Moreover you can change the sort criteria just by
changing the sort parameters that passed thru the SYSIN card.
So the external sort is more efficient compared to internal
sort.
| Is This Answer Correct ? | 24 Yes | 8 No |
Answer / udhaya
the internal sorting can reside in main memory....external
use secondary memory.....
-internal sorting is independent of time to read/write a
record...external ids dependent on the same
-internal sorting takes input only which can be fit into
its memory...i.e. it takes small input....whereas external
sorting can take as much as large input...
| Is This Answer Correct ? | 17 Yes | 3 No |
What is redefines clause in COBOL?
what happens of we dont give time stamp in precompilation process
What is the difference between a subscript and an index in a table definition?
What is the difference between external and global variables in COBOL?
what is mainframe? what is the mainframe software ? what is use in s/w field?
What is the difference between SEARCH and SEARCH ALL?
At the minimum, which division of COBOL is enough to be coded?
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
Can we MOVE X(9) to 9(9) OR 9(9) to X(9)? If yes what are the ways for doing this?
12 Answers T systems, Tech Mahindra,
i Want All cobol ERROR codes?
Which of the following files can be OPENed in all the 4 modes? The four modes are INPUT, I-O, OUTPUT and EXTEND. (a) INDEXED (b) RELATIVE (c) SEQUENTIAL (d) All of the above
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is