what is search and searchall?what is the diffrence between
them?give an best example?
Answers were Sorted based on User's Feedback
Answer / sid
Search is a leniar search and search all is binary search.
In search all it required to be sorted all the records in
assending or descending order.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / naveen
-Search is a linear search, search all is a binary search.
-search is performed in sorted and unsorted record, searchall is only in sorted record.
-in search multiple when clause is used, in search all single when clause is used.
-search is always used in small table, search all is always used in large table.
-Index value is set to 1. in search all no need!
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / siri
SEARCH SEARCHALL
-------- ---------------*SEARCH IS A LINEAR SEARCH *SEARCHALL IS A BINARY SEARCH
*DATA NEED NOT BE IN SORTED *DATA MUST BE IN SORTED ORDER
ORDER
*SEARCH IS EFFICIENT THAN *SEARCHALL IS EFFICIENT THAN
PERFORM SEARCH
*MULTIPLE WHEN CONDITINS ARE *ONLY ONE WHEN CONDITION IS
SPECIFIED SPECIFIED.
*ANY RELATIONAL OPERATOR(=,<= *ONLY = CAN BE USED
>=)CAN BE USED.
| Is This Answer Correct ? | 0 Yes | 0 No |
how do you reference the variable unblock file formats from cobol programs
comp-3 field occupy?
Explain complete concept of table handling in COBOL with an example?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
can we use full outer join with cursors declared in cobol program?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
Explain call by context by comparing it to other calls.
What are the different rules for performing sort operation?
Explain how you can characterize tables in cobol?
what is record label is empty or standard in file description of data division?
copy 100 records without using ibm utilities
Why we need to use redefine clause when we can define the variable seperately... what is actual need....