TYPES OF SORTINGS.
which is more prefarable.

Answers were Sorted based on User's Feedback



TYPES OF SORTINGS. which is more prefarable...

Answer / girish kumar

2 TYPES OF SORTINGS

1.INTERNAL SORTING- cobol sorting
2. EXTERNAL SORTING.- jcl sorting.

WE MAINLY USE EXTERNAL SORTING, WHICH IS EASY AND FAST.

Is This Answer Correct ?    35 Yes 0 No

TYPES OF SORTINGS. which is more prefarable...

Answer / adarsha

internal sort.. because we can have data validations to the
max extent a programmer could do...

Is This Answer Correct ?    0 Yes 12 No

Post New Answer

More COBOL Interview Questions

What is ASKTIME, SUSPEND

1 Answers   IBM,


can you declare redefine in level 01?

8 Answers   Patni,


Minimum how many Number of Paragraphs are there in ID- Divison?

7 Answers   IBM,


What are the differences bitween cobol and cobol-2?

1 Answers   Wipro,


What is SDSF?

13 Answers   IBM,






What is the difference between copy and include in cobol?

1 Answers  


Differentiate COBOL and COBOL-II?

0 Answers  


have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..

5 Answers   TCS,


What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?

2 Answers   T systems,


What are the divisions in a cobol program?

1 Answers  


Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?

5 Answers   IBM,


How to solve SOC7. I have the cobol coded as below 01 A PIC 9(4). 01 AIN REDEFINES A. 05 AIN1 PIC S9(4) 01 B PIC 9(4)V99. 01 BIN REDEFINES B. 05 BIN1 PIC S9(4)V99. PROCEDURE DIVISION. START-PARA. INITIALIZE A AIN B BIN. ACCEPT A B. DISPLAY 'VALUE OF A=' A. DISPLAY 'VALUE OF B=' B. DISPLAY 'VALUE OF BIN1=' BIN1. DISPLAY 'VALUE OF AIN1=' AIN1. COMPUTE AIN1 = BIN1 - AIN1. DISPLAY 'VALUE OF AIN1=' AIN1. When i'm executing this code i'm getting SOC7 for A = 12 & B=34. Can someone explain SDSF OUTPUT DISPLAY TCOM058R JOB05458 DSID 102 LINE 0 COLUMNS 02- 81 COMMAND INPUT ===> SCROLL ===> CSR ********************************* TOP OF DATA ********************************** VALUE OF A=12 VALUE OF B=34 VALUE OF BIN1=34 VALUE OF AIN1=12 CEE3207S The system detected a data exception (System Completion Code=0C7). From compile unit PROG1 at entry point PROG1 at statement 29 at compile +000004CE at address 00007ECE. Please address how to solve this issue Thanks in advance.

1 Answers  


Categories