what is the difference between SEARCH and SEARCHALL?
Answers were Sorted based on User's Feedback
Answer / mithun paul
Search verb searches an item in a sequential manner. But
Search All searches an item by using Binary search, so it
is more efficient and faster than its counter part. One
thing required in Search All verb is the array must be
sorted.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / s. gautam
Search : sequential Search
Search All : Binary Search (its faster then normal search )
| Is This Answer Correct ? | 7 Yes | 0 No |
Explain how to detect record is locked in cobol/400? What is the solution for that?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
What is sort?
Explain the types of perform?
Explain how to update data area in cobol 400 program?
Explain the difference between search and searchall?
Trying to help a friend... How do you code screen I/O without a DDS? I know it can be done, because for a short time, I worked for a company that did it. It was just too long ago for me to remember what was involved.
Explain the input procedure and output procedure?
Explain the syntax of sort?
How to update data area in cobol 400 program?
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC * EVALUATE TRUE WHEN SQLCODE = +000 MOVE WS-COUNT TO Copybook field WHEN SQLCODE = +100 MOVE ZEROES TO Copybook field
Explain the output procedure?