At the minimum, which division of COBOL is enough to be
coded?
Answers were Sorted based on User's Feedback
Answer / rajesh naidu
Identification Division.
Because whatever the program, at minimum it identifies
program name.
| Is This Answer Correct ? | 4 Yes | 0 No |
How to resolve the soc4 & soc7 other than following answers. Soc4 can resolved using mispleed dd name and dd name is not matching with file and soc7 check the sysdump and copy the offest address then correct it in the program.
10 Answers ADP, Amdocs, Cap Gemini, Keane India Ltd, Super Value, TCS,
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
What is ASKTIME, SUSPEND
How many types of sorts are there in cobol?
what is the advantage of using redefines instead of delaring the variables ?
What was removed from COBOL in the COBOL II implementation?
how to access the file from prodution from changeman tool and to submit a file to production
What is the LINKAGE SECTION used for?
How do you define a table/array in COBOL?
01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
Difference between next and continue clause