The maximum number of dimensions that an array can have in
COBOL-85 is ?
Answer Posted / lokesh kumar
7 dimensions
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is rmode(any) ?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
Discuss about changing dataset name in proc.
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
How do you reference the fixed block file formats from cobol programs
What is the difference between Global and External Variables?
What are the different data types in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol?
how do you reference the printer file formats from cobol programs
Write a program that uses move corresponding.
how do you reference the variable block file formats from cobol programs
What is the use of intialize verb?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
How you can read the file from bottom?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?