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 |
what are the limitations of Inline Perform?
can we use variable picture clause as xx.99 in cobol.
what is level 66 means??
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
What is the difference between a DYNAMIC and STATIC call in COBOL?
in cobol perform stmt whether it first checks the condition or not
What are the divisions in a cobol program?
How is sign stored in a COMP field ?
How to remove 2 duplicate records and copy only one using job control language?
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
what is difference between the sysabend and userabend?