When search all is used in cobol program without sorted
input data?
Answer Posted / sivakumar sekharannair
Search all is a binary search and is searched with the help
of key. so the table should be necessarily sorted
| Is This Answer Correct ? | 14 Yes | 5 No |
Post New Answer View All Answers
What kind of error is trapped by on size error option?
What is perform what is varying?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
what happens if parmparameter passes zero bytes to the program
Explain how to differentiate call by context by comparing it to other calls?
) what is the difference between AID and HANDLE AID?
What is rmode(24)
Differentiate between structured cobol programming and object-oriented cobol programming.
Write a program that uses move corresponding.
What is the difference between PIC 9.99 and 9v99 in COBOL?
how do you reference the variable block file formats from cobol programs
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
What is the difference between next sentence and continue in cobol programing language?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
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.