When search all is used in cobol program without sorted
input data
Answers were Sorted based on User's Feedback
Answer / geeta
SEARCH ALL wont give correct output if the data is not in
sorted order.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / reena
SEARCH ALL is a binary search. So, the data needs to be in
sorted order and the array used for search all operation
should have index by.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / srinivasareddy
If the table is loaded in a sorted order, then no need to
sort it explicitly and then Search all can be performed..
| Is This Answer Correct ? | 7 Yes | 0 No |
Code how to read 5th element of the array?
Explain how to detect record is locked in cobol/400? What is the solution for that?
Define perform?
Explain the difference between search and searchall?
What is output procedure?
what is PERFORM? and its types?
Explain the difference between comp & comp-3?
It's possible use %TRIM statement like rpgile?
what is INPUT PROCEDURE and OUTPUT PROCEDURE?
WHAT ALL THE CONDITIONES REQUIRED FOR USING OPEN OPCODE ON A FILE?
What is redefine?
When search all is used in cobol program without sorted input data