-
-
-
-
-
-
How to find the number of records in a flat file using COBOL ?
I tried in many ways, but it loops over again and again in the last record and reports me abend error.
-
-
-
-
-
C1 C2 C3 are three conditions whose TRUTH values are as follows.
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 -
What is an in line PERFORM? When would you use it? Anything else to say about it?
The PERFORM and END-PERFORM statements bracket all COBOL II statements between them. The COBOL equivalent is to PERFORM or PERFORM THRU a paragraph. In line PERFORMs work as long as there are no internal GO TOs, not even to an exit. The in line PERFORM for readability should not exceed a page length - often it will reference other PERFORM paragraphs.
-
-
-
-
-
Called and calling program for cobol with cursor
I have program A which is calling B first time. B program is feaching data using cursor , but some mess happened and the control went back to pro A without closing cursor . Once again program A called program B then what will happen to cursor. will program fetch the data.
-
-
What will happen if a cursor is opened again before closing?
A cursor is opened.After fetching few rows. it is opened again before closing it.What will be the result?
-
COBOL Interview Questions
Ans