what is the default print format? in cobol
Answers were Sorted based on User's Feedback
Answer / ashok
in cobol defalt print formate is spacess only. eaither
numaric or alphanumaric or chater also
Is This Answer Correct ? | 5 Yes | 2 No |
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
1.What is the default print format in cobol?
How To move a value to an array using move verb?
db2 variable decimal(15,2) what is the equalent size of cobol variable
What guidelines should be followed to write a structured Cobol program?
Explain fixed length record in cobol? with suitable example
What is the difference between index and subscript?
What type of SDLC u followed? Why?
How many sections are there in data division in COBOL?
What are the divisions in a cobol program? Which one is the mandatory division among them?
i Want All cobol ERROR codes?
How do you come out of an EVALUATE statement?