If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially?
For example :
Input File
01
02
03
Para 900
Read infile
Display Infile rec
Read infile
Display infile rec
Read infile
Display infile rec.
What will be the output?
Answers were Sorted based on User's Feedback
what is the use of filler in cobol programing?
Explain the configuration section of a cobol program with examples of syntax.
I know my query will return more than one row but I don't want cursor what should I do?
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
how to code in cobol while using variable block file?
db2 variable decimal(15,2) what is the equalent size of cobol variable
What is length is cobol?
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
Suppose i want to declare a binary comp fild of 7 byte .how to write?
What is the difference between SEARCH and SEARCH ALL?
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
What is amode(24)?