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 |
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
Hi , I am posting some questons which are asked at interview. These may help u for ur interview... what is static and dynamic call?
how do you define single dimensional array and multidimensional array in your cobol?
What is 88 level used for ?
Give some advantages of REDEFINES clause?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
how do you move only numeric data from A to B 01 A pic x(10) value 'a1b2c34d5e'. 01 B pic x(5).
Why do we use COMP-3 variables for computation, when we know that they are non displayable fields and require additional MOVE to numeric field before we populate it in output Reports?
describe 805 error
How to retain the Duplicates in the one records?
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
SSRange is used to do a range check on which of the Following. SUBSCRIPT,INDEX,REFERENCE MODIFICATION,Run-time option.