How do you come out of an EVALUATE statement?

Answers were Sorted based on User's Feedback



How do you come out of an EVALUATE statement?..

Answer / prakash shrivastava

AFTER THE EXECUTION OF ONE OF WHEN CLAUSE ,THE CONTROL IS
AUTOMATICALLY PASS TO THE NEXT SENTENCE AFTER THE EVALUTE
STATEMENT.THERE IS NO NEED ANY EXTRA CODE FOR EVALUATE
STATEMENT.

Is This Answer Correct ?    4 Yes 0 No

How do you come out of an EVALUATE statement?..

Answer / purushothaman.m

at the end of the statement use END-EVALUATE(scope
terminator) before StopRun.

Is This Answer Correct ?    2 Yes 0 No

How do you come out of an EVALUATE statement?..

Answer / aji cherian

As soon as a condition is met, it will come out
automatically.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More COBOL Interview Questions

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,


hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps

5 Answers   iNautix,


Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you

1 Answers   BPL,


COMP-3 field occupy ?

8 Answers  


I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?

6 Answers   IBM,






How many sections are there in data division?.

10 Answers   Amdocs, TCS,


How do you get the data to code the BMS macro?

0 Answers   IBM,


IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why

3 Answers  


What are VS COBOL 11 special features?

1 Answers  


What is the difference between perform … with test after and perform … with test before?

0 Answers  


What does the INITIALIZE verb do?

1 Answers  


A LESS 1200 IF B GREATER 25 MOVE 47 TOC ELSE MOVE 57 TO C IF A GREATER 249 MOVE 67 TO C ELSE NEXT SENTENCE ELSE IF B LESS 67 MOVE 27 TO C What will be the value of C, when A is 137 and b is 25

3 Answers   TCS,


Categories