Answer Posted / bhaskar r
IDENTIFICATION DIVISION
ENVIRONMENT DIVISION
DATA DIVISION
PROCEDURE DIVISION
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the problem of ordered sequential files access?
What are the rules of the move verb?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
i need a small 3d program using inline and outline.
What is an in line perform? When would you use it? Anything else you wish to say about it.
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
How arrays can be defined in COBOL?
What is the difference between binary search and sequential search?
Write a cobol program making use of the redefine clause.
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?