tell me about examine inspect and evaluate ?
Answers were Sorted based on User's Feedback
Answer / tejas sheth
INSPECT and EXAMINE are STRING verbs of COBOL.
wheres EXAMINE has been removed from later versions of COBOL.
Evaluate is a conditional statement which is same as Switch
statement in C language, it used to check multiple condition
for single or double or multiple datanames
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / obulreddy.k
Inspect is used to find the number of occurrence of single
character or Group of characters
examine is used to find the number of occurrence of single
character only
| Is This Answer Correct ? | 4 Yes | 0 No |
what is meaning by design document? who can repared for this?
How do you reference the following file formats from cobol programs?
suppose there is one PF having two members PF1 PF2.PF has one unique key Emp ID.could you tell me uniqueness in PF will be effective across members as well ? assume emp iD 3333 is in member PF1 would same Emp id be exist also in member PF2 ?
how many bytes does s9(15) occupy in comp1 comp2 and comp3 ?
What are the different rules to perform a Search?
what is the meaning of pic 9(09)v99-
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).
Name the sections present in data division.
Define static linking and dynamic linking.
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
What is the different between index and subscript?
For rewrite, why is it mandatory that file needs to be opened?