Write some characteristics of cobol as means of business language.
No Answer is Posted For this Question
Be the First to Post Answer
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
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,
What is the Importance of GLOBAL clause According to new standards of COBOL?
01 b pic +9(4) How many bytes it will take for storage???
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
What is SDSF?
is it possible to declare index in cobol program? if it is not why its tell me pls
SIGN TRAILING SEPARATE field occupy ?
i need a small 3d program using inline and outline.