1.

What are the features of object-oriented programming languages?

Answer»

Programs are divided into objects

  • Data structures are designed such that, they characterize the objects.
  • Functions that operate on the data of an object are tied together in the data structure.
  • Data is hidden and cannot be accessed by external functions.
  • Objects may communicate with each other through functions.
  • New data and functions can be easily added whenever necessary.
  • It follows a bottom-up approach in program design.
  • Concentration is on data rather than on procedures.


Discussion

No Comment Found