what is the difference between implicit and explicit scope terminator with example?
Answer / avijit bardhan
Implicit scope terminator is period which is used at the end of statement to terminate the scope of previous statements.
Explicit terminators are like END-PERFORM, END-READ, END-EVALUATE etc.
Is This Answer Correct ? | 22 Yes | 0 No |
What are different file OPEN modes available in COBOL?
1) can we display the index?
What are the different types of condition in cobol and write their forms.
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
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
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?
How to retrive the 9th records out of ten records using the cobol program ?
hie everyone.i just completed my b.tech in electronics and joined mainframes course.am i doing right course for my better future?please help me with your suggestions.ill be very thankful to you guys.
in cobol i have one file it contains records like 10,4,23,98,7,90..... total records 100. iwant 10 to 20 in reverse order in cobol environ ment any one please give the answer......
what is scope terminator
What are some examples of command terminators?
Can we use redefine clause in occurs clause?