1.

What are the differences between Structured COBOL and Object-Oriented COBOL programming?

Answer»
STRUCTURED COBOL ProgrammingObject-Oriented COBOL Programming
All functionalities are divided into modules.This follows a logical STYLE of programming that helps to WRITE code logic in a clean manner.
Less secure as there is no data hiding feature involved.Since it follows an object-oriented APPROACH, there is encapsulation and abstraction involved which helps in data hiding.
More natural WAY of coding.Here, objects are first identified and functionalities of those are then written. Hence, it is more secure.


Discussion

No Comment Found