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 |
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
HI THIS IS ANIL. HOW TO PASS A RECORDS OF A FILE(PS OR PDS) TO AN ARRAY?
How to retain the Duplicates in the one records?
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
How to read a 100 record from a file through cobol?
What will happen if you code GO BACK instead of STOP RUN in a stand alone COBOL program ?
8 Answers Arigo Infotech, IBM,
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
describe 805 error
How include time & date in the report generation in cobol programing?
Which of the following characters is NOT valid in column 7? a. - b. \ c. * d. # e. $
What is difference between static and dynamic call in cobol?
what r the types of perform statement