A table has two indexes defined. Which one will be used by the SEARCH?
No Answer is Posted For this Question
Be the First to Post Answer
Whats the difference between search & search ALL?
Consider the following: 77 W-NUM PIC 9 VALUE 0 ------ MOVE 1 TO W-NUM PERFORM PARA-X UNTIL W-NUM > 9. ------ PARA-X ADD 1 TO W-NUM How many times PARA-X is executed ?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
i need a program by giving input as a abcd in any randem order but i need a output as 1234 related to abcd. i.e,. a for 1,b=2,c.....etc..
01 a pic s9(5) value '-12345' how it will be stored
COMP-3 field occupy ?
How to display the index.(displacement from an array)
What are the different data types in cobol?
What is the difference between perform … with test after and perform … with test before?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
I had 100 records and i want to execute last three records by using cobol programming?what will be coding?