Have you code any new programs in COBOL ? What is the
functionality of the programs?
Answers were Sorted based on User's Feedback
Answer / arjun
we do code several Cobol programs acording to the
requirement. Most of these are report generating codes.
Also, we need to code for several applications
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shinoy sansilavose
You can specify the purpose/aim for creating the new
program which is intended for in the FUNCTIONALITY of the
mod log description when you write a new program.
Suppose you are creating a program to find the Population
of a city when a city name file is inputted.then your
functionality of the program will be,
FUNCTIONALITY: A PROGRAM TO FIND THE POPULATION OF A CITY
Is This Answer Correct ? | 0 Yes | 0 No |
Define in-line perform?
What are the different rules for performing sort operation?
Can we change the password using ALTER? anyone tried and changed?
what is the difference b/w level no.01 & level no.77?
Can the OCCURS clause be at the 01 level?
how to code in cobol while using variable block file?
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
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
write a program to eliminate duplicate records in a input file and send them to output file.
How can you declare the file ?
Describe the cobol database components?
A s9(4). B v9(4) value 0.21 can i move this?