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 |
i have two programs 1.cobol program 2.copy book program can i move bouth program in to the production or single single program?
Explain the input procedure and output procedure?
Define redefine and its syntax?
How COBOL helps Mainframe to maintain large records ???
what is PERFORM? and its types?
Arrays in COBOL/400
What is the syntax of redefine?
What is the actual use of fillers?
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
What is redefine?
What is comp?
What are Fillers ? What is the actual use of Fillers ? With small/simple Example..