Basic object oriented features and concepts

Basic object oriented features and concepts  Various important features of object oriented programming are: Objects and classes Encapsulation Polymorphism Inheritance Abstraction Message passing Dynamic binding

C++ introduction

C++ is an object oriented programming language and was developed by Bjarne Stroustrup. It was developed at AT&T Bell laboratories in New Jersey USA in 1980. C is a more …

Evolution of C++

C++ programming language was developed by Bjarne Stroustrup in 1983. He started with project around 1980 and launched in 1983. He had a concept in his mind to develop such …

What is Method overloading?

What is Methods overloading? ” In method overloading we can make the methods with the same name but with different parameters. When we call a function then C++ compiler matches …

What is access specifier?

Access specifier We can inherit the two classes by using three access specifiers. access specifiers is also known as visibility mode. when a class is derived from an existing class, …