Objects: Object Oriented Programming

  • Object Oriented Programming: Inheritance, Polymorphism, Encapsulation

The basic idea behind the Object Oriented Programming is that it deals with the objects. In real life everything is an object and every object…

Classes – Object Oriented Programming

  • Object Oriented Programming: Inheritance, Polymorphism, Encapsulation
Classes – Object Oriented Programming

If we say that a particular programming language is Object Oriented then it means, the programming language must have the facility to define classes in…

Personal Organizer

  • Utility Programs and Applications

NeoMem allows you to store and organize all kinds of information in a cross between a word processor and database. The interface is similar to…

Inheritance

  • Object Oriented Programming: Inheritance, Polymorphism, Encapsulation

In real life inheritance is what we acquire from our parents. For example our lifestyle, way of talking etc... In Object Oriented Programming Inheritance is…

Understanding the Basics of Encapsulation in C++

  • C++ Programming: Different Articles on C++ Programming

Encapsulation is a fundamental concept in Object Oriented Programming (OOP) that involves bundling data (attributes) and methods (functions) into a single unit known as a…

Simple Image Viewer in Java with Swing

  • Java: Java Programming Concepts

This Java program is a simple image viewer application designed for novice Java programmers. The program utilizes the Swing library to create a graphical user…

Functions in C++ Programming

  • C++ Programming: Different Articles on C++ Programming

Functions are the building blocks of any programming language. In C++, a function is a block of code that performs a specific task. Think of…

Learn File Handling Concepts in C Programming

  • C Programming: Different Articles on C Programming

This article is about file handling using C programming language. File stores information for many purposes and retrieve whenever required by our C programs. A…

Virtual Functions in C++

  • C++ Programming: Different Articles on C++ Programming

Virtual functions enable redefinition of a base class function in derived classes using the "virtual" keyword. They allow dynamic selection of the appropriate function at…

Object Oriented Programming Techniques

  • Object Oriented Programming: Inheritance, Polymorphism, Encapsulation

Any program which uses these five methodologies or any of it, we can call that program object oriented. They are Encapsulation, Data Hiding, Overloading, Polymorphism,…