What is the difference between structured cobol programming and object alternativelyiented cobol?
No Answer is Posted For this Question
Be the First to Post Answer
What is the significance of 'above the line' and 'below the line'?
how to resolve the file status 47.......
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
can we use go to statement inline-perform?
Why would you use find and get rather than to obtain?
which certifications r 4 cobol,jcl,db2,cics what is format of xam n what is importance of these certifications... plz post answer only if u r sure... thanks
Which Search verb is equivalent to PERFORM…VARYING?
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
How is sign stored in a COMP field ?
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
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