What is the difference between goback, stop run and exit program in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
I have a Flat file in which certain records are present in a tabular format. I need to extract some of the records on some basis from it and copy them into a flat file...how it can be done ??
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
i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,copy,write operations).plz give me details of all posible JCL utilities?
write a program to eliminate duplicate records in a input file and send them to output file.
Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER
why we are using set in searchall?
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
Mention the guidelines to write a structured cobol program?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
How do you get the data to code the BMS macro?
What is the difference between goback, stop run and exit program in cobol?
What is the difference between PIC 9.99 and 9v99?