Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum Definition of OOPS? Object-oriented programming is an approach that modularizes programs by creating a partitioned memory area for both functions and data that can be used as templates for creating copies of such modules on demand. Features of OOPS Some features of object-oriented programming in java are: Emphasis is on data than procedures Programs are divided into objects Data Structures are designed to characterize objects. Methods operating on the data of an object are tied together in the data structure. Data is hidden, and external functions cannot access it. Objects communicate with each other through methods New methods and data can be easily added whenever necessary Follows the bottom-up approach in program design
Related Topics