What is the difference between Structured COBOL Programming
and Object Oriented COBOL ?
Answer / anoop
In structured programing methode we first looks at the
function and will code according to the function.
In object oriented programing methode we first identifies
the objects (variables) and codes according to that.
Is This Answer Correct ? | 4 Yes | 3 No |
how to pass 100 to s9(4) how r they inserted ?
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 to fetch the record before the last record in a cobol file( its a huge file and if the key field is not known)
What is rmode(24)
Whtz the specialty of 77 level number ?
write a program to eliminate duplicate records in a input file and send them to output file.THIS IS IGATE RECENT QUESTIONN.....JUST 1 WEEK BACKKKK...
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
what are the control characters used in reports
Sending data is aplhabetic size 7 (value 3000), I wantated this value to be stored in database, which is defined as s9(7)v9(2)comp-3.
Explain about level numbers?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?