can i use multiple when statements in search & search all ?
justify ur answer?

Answers were Sorted based on User's Feedback



can i use multiple when statements in search & search all ? justify ur answer? ..

Answer / abhi

we can use multiple statements in search but not in search all.

Is This Answer Correct ?    16 Yes 1 No

can i use multiple when statements in search & search all ? justify ur answer? ..

Answer / kalpanapedda

only multiple statements is possible in serch,in serch all
only one when condition is possible.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More COBOL Interview Questions

HI THIS IS ANIL. HOW TO PASS A RECORDS OF A FILE(PS OR PDS) TO AN ARRAY?

2 Answers  


I have PS flat file with 14 records. I want to read from 4th to 9th record and want to write those 6 records (4th record to 9th record) to another PS file (output file). there is no key defined in the input file. I just want read a certain Consecutive records. can any one please give me the procedure division Coding for this. I have coded the below coding but the READ-PARA is performing only 1 time even though I have 14 records in my input file (i.e FILE-1): PROCEDURE DIVISION. A000-SECTION. MOVE 0 TO I. OPEN INPUT FILE-1. IF CHECK-KEY1 > 0 DISPLAY "OPEN ERROR FOR FILE-1, CODE IS:" CHECK-KEY1 END-IF. OPEN EXTEND NEWFILE-1 IF CHECK-KEY3 > 0 DISPLAY "OPEN ERROR FOR NEWFILE-1 COD IS" CHECK-KEY3 END-IF. PERFORM READ-PARA THRU EXIT-PARA UNTIL EOF-REC = 'YES'. DISPLAY " FINALLY OUT OF LOOP" CLOSE FILE-1 CLOSE NEWFILE-1 STOP RUN. READ-PARA. ADD 1 TO I READ FILE-1 AT END MOVE 'YES' TO EOF-REC IF I > 3 AND < 10 PERFORM WRITE-PARA ELSE DISPLAY "NOT IN RANGE" END-IF. EXIT-PARA. EXIT. WRITE-PARA. WRITE NEW-REC FROM FILE1-REC.

8 Answers   IBM,


State the various causes of s0c1, s0c5 and s0c7.

0 Answers  


what is the advantage of sync class

3 Answers   ACS,


what is the maximum error code in mainframe

2 Answers  






How can we find that module can be called – whether DYNAMICALLY or STATICALLY?

0 Answers  


What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?

0 Answers  


what is sysncpoint?

1 Answers   IBM,


What are some examples of command terminators?

1 Answers  


What is difference between static and dynamic call in cobol?

0 Answers  


Can anyone please give the example of Inline Perform.

6 Answers   TCS,


C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE

1 Answers   TCS,


Categories