What is the difference between external and global variables in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between PIC 9.99 and 9v99 in COBOL?
0 Answers SwanSoft Technologies,
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
What are the access modes of START statement?
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is
What are the different data types in cobol?
What is the use of LINKAGE SECTION?
Name the divisions, which are available in a cobol program?
Can we MOVE X(9) to 9(9) OR 9(9) to X(9)? If yes what are the ways for doing this?
12 Answers T systems, Tech Mahindra,
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.
Define cobol?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.