Suppose i have a Cobol field of 10 byte. it contains a
decimal sign.How to know where is the point location?
Answer / chinmay
Suppose we have a amount
01 amt pic s9(5)v99
we denote the point location in v position
| Is This Answer Correct ? | 2 Yes | 0 No |
How To move a value to an array using move verb?
How many types of sorts are there in cobol?
What is static and dynamic call 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
What will happen if we generate GDG +2 version instead of +1 version?
i have variable record in the 5th, i want to sort from 5th filed ? how ?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
how to know that the file has 300 records how to acess it?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
What is the file organization clause ?
How to remove 2 duplicate records and copy only one using job control language?