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 |
I have a File that has duplicate records. I need only those records that occur more than thrice.?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
Can a Search can be done on a table with or without Index?
WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
why we are using picture clause in the cobol programs?
What is the local-storage section?
Explain what you understand by passing by value.
where do u use low-value and high value in cobol
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
Name the divisions in a COBOL program ?
can any one help -s806