Write down the divisions of cobol program?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define a table/array in COBOL?
What are the different ways to run a COBOL DB2 program using JCL?
What are the ways you can generate a copybook?
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include tempary file used for sorting in assign statement?
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 the LINKAGE SECTION used in COBOL?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is the difference between PIC 9.99 and 9v99 in COBOL?
0 Answers SwanSoft Technologies,
What are the different data types available in COBOL?
What is the purpose of Identification Division?
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
01 b pic +9(4) How many bytes it will take for storage???