what are difference organizations in cobol and access mode
in cobol? can you expalin what organization means while
declaring for ksds,esds,rrds?
Answer / ashok kumar reddy nagrimadugu
organization is a class which is to specify the type of file.
org'n can be sequential,indexed,relative.
acess mode is used to acess the records in
seqential,random,dynamic.
KSDS:org'n is indexed
ESDS:org'n is SEQUENTIAL
RRDS:org'n is ,relative.
| Is This Answer Correct ? | 17 Yes | 0 No |
Which is the best IBM mainframe Training Institute in Ameerpet, Hyderabad
what are the working storage fields in BMS macro?
In COBOL, what is the different between index and subscript?
0 Answers TryTechnicals Pvt Ltd,
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
In an EVALUATE statement, can I give a complex condition on a when clause?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
how can we code index in an array of cobol pgm?
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
how can we apply for HSBC exam(Mainframe) in India??? i went to their site and was told to submit my CV ,. etc..( totally confusing...)
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 am going to Display the WS-VARX and WS- VARN?