What is the meaning of 'Eject' verb in cobol?
Answers were Sorted based on User's Feedback
Answer / pratap
EJECT Statement
Description
The EJECT statement specifies that the next source
statement is to be printed at the top of the next page.
The EJECT statement must be the only statement on the line.
You may write it in either Area A or Area B, and you may
terminate it with a separator period.
The EJECT statement has no effect on the compilation of the
source program itself.
Example:
->->--EJECT--*-----*-------------------------------------><-
*- . -*
------------------------------------------------------------
--------------------
| Is This Answer Correct ? | 38 Yes | 2 No |
Answer / guest
eject verb can be used any division in cobol program. it is
ued for page break..
| Is This Answer Correct ? | 34 Yes | 4 No |
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
What is the difference between perform … with test after and perform … with test before?
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest
What is the difference between goback, stop run and exit program in cobol?
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size
What does the INITIALIZE verb do?
plz any one tell clearly the justify right clause?
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
why occurs clause not mentioned in 01 level
6 Answers HCL, NIIT, TCS, Tesco,
level number 77 is used to define a)group data b)elementary data c)redefine d)none
how to refer the data field?