What is the difference between SEARCH and SEARCH ALL?
Answer Posted / sharath
SEARCH
1)Linear/sequential search
2)No sorting order because its seq. order
3)access is slow
4)Any relational operator is used
SEARCH ALL
1)Binary search
2)Sorting either asc/dsc order
3)Access is faster
4)Only equal operator can be used.
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What is the utilization of copybook in cobol?
Can we redefine the field of x(200) to less than 200?
How to remove 2 duplicate records and copy only one using job control language?
What is the difference between goback, stop run and exit program in cobol?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
how to move the records from file to array table. give with code example
Which division and paragraphs are mandatory for a COBOL program?
What type of SDLC u followed? Why?
What are the different rules to perform a Search?
How you can read the file from bottom?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
In which area will you utilize 88 level items in cobol?
how do you reference the variable unblock file formats from cobol programs
What are the pertinent COBOL commands?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?