tell me about examine inspect and evaluate ?

Answers were Sorted based on User's Feedback



tell me about examine inspect and evaluate ?..

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

tell me about examine inspect and evaluate ?..

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

Post New Answer

More COBOL Interview Questions

If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?

8 Answers   UST,


How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.

4 Answers   Cap Gemini,


how many divisions are there in cobol

3 Answers   ADP,


In a file if a column account number conatain value 0001234.. how can we move the value to another variable without zero. value may contain any type such as 00123405. we need the value 1234 or 12305. how can we do that in cobol. Please help.

1 Answers   CSC,


How do you define a variable of comp-1 and comp-2?

0 Answers  






What was removed from COBOL in the COBOL II implementation?

0 Answers  


HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?

1 Answers  


BY seeing a program how can we say that it is static call or dynamic call

5 Answers   CGI,


Why we are using comp and comp-3 in real time projects?

4 Answers   IBM,


In INITIALIZE what is Repalcing Word will do

1 Answers   CTS,


What is the utilization of copybook in cobol? Could we utilize a similar copybook?

0 Answers  


what is the size of W-REC in the following 01 W-REC 05 A PIC 9(4)V99 05 B READLINES A 10 C PIC XX 10 D PIC S9(4) 05 E OCCURS 7 PIC ZZ.ZZ 05 F OCCURS 5 10 G PIC ZZ.ZZZ99 10 H OCCURS 3 15 J PIC 9(3) 15 K PIC V99

2 Answers   TCS,


Categories