Category Archives: Misc

Code editors

Code editors are where programmers spend most of their time. There are two main types of code editors: IDEs and Lightweight editors. IDEs (Integrated Development Environments) IDEs (Integrated Development Environments) are powerful editors with many features that work on whole project. IDEs load projects, allow navigation between files, provide autocompletion based on the whole project, and integrate with… Read More »

Messages, Aggregation and Abstract classes in OOPS

1. Message Message in OOPS refers to data used during interaction of different objects. The objects interact with each other by passing messages(data). To interact with each other objects do not need to know anything about each other. They just need to know the type of data(message) accepted and the type of data(message) returned by the other object.… Read More »