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 |
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
What is the difference between external and global variables in COBOL?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
can you declare redefine in level 01?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is JOBLIB and STEPLIB in JCL? what is the purpose of using it?
copy 100 records without using ibm utilities
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
What is the mode in which you will OPEN a file for writing?