what is amode(24), amode(31), rmode(24) and rmode(any)?
No Answer is Posted For this Question
Be the First to Post Answer
Can printer files (having 133 characters) be of variable length?
Are you comfortable in cobol or jcl?
How can we know that cobol program is using report file or simple file....?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How do pass the values to the parameters in cobol
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is the usage of comp fields in cobol?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.
can we declare occurs in 01 level?
What is the file organization clause ?
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?