what is record label is empty or standard in file description
of data division?

Answers were Sorted based on User's Feedback



what is record label is empty or standard in file description of data division?..

Answer / azharuddinsyed

Label records are standard -> will be coded for disk/tape files
Label records are omitted -> will be coded for printer files.

Is This Answer Correct ?    1 Yes 0 No

what is record label is empty or standard in file description of data division?..

Answer / bkk

I guess, If we want to access/store the dataset that resides
in tape we mention it as record label is empty. If it is in
dasd we mention it as record label is standard

correct if i am wrong

-cheers

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More COBOL Interview Questions

What kind of error is trapped by on size error option?

0 Answers  


What is the difference between Structured COBOL Programming and Object Oriented COBOL ?

1 Answers  


Without using move verb how to move one variable to another.

5 Answers  


01 a pic s9(5) occupies how many bytes ?

9 Answers   Wipro,


how many bytes do SPPPP999 will store?

18 Answers  






How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.

6 Answers   Accenture,


) What is the use of IGNORE?

1 Answers   IBM,


What does the INITIALIZE verb do?

1 Answers  


What is the difference between working storage copybook and linkage section copybook?

5 Answers   TCS,


What is the default value of DISP parameter?

3 Answers   IBM,


01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?

6 Answers   L&T,


77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value zeros. move a to b what is the answers for both cases? IS it possible? Give me elementary move rules briefly......

8 Answers  


Categories