Technology

C++ Programming BasicsC++ Programming Basics For Kids
What is object-oriented programming?

Object oriented programming is a method of solving complex problems by breaking them into smaller problems using objects.
On the other hand, Procedural Programming is a method of solving problems by carrying out a series of computational steps called procedures or routines.
Object-oriented programming uses “objects” and their “interactions” to design applications and computer programs.

More
Deep dive into the Calculator program!

We have a calculator class which models a real-world object ‘a calculator’
What are the characteristics of this object?
An object has a name or an identity..
An object has certain behavior..
An object has certain states or properties..

More