Explain fixed length record in cobol? with suitable example
Answer / jai ho
Fixed length record can be created by giving
example
FD IN-FILE
RECORDING MODE IS F
RECORD CONTAINS M CHARACTERS
CORRECT ME
| Is This Answer Correct ? | 7 Yes | 0 No |
What are the different open modes available in cobol?
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?
what happens of we dont give time stamp in precompilation process
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
What is LENGTH in COBOL II?
what is the difference between COBOL2 AND COBOL390?
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......
Minimum how many Number of Paragraphs are there in ID- Divison?
Why we should use cursor ?
I have a sequential file. How do I access a record in this sequential file randomly in my program ?