C++ Language

Encapsulation in C++ With Examples

In this blog post tutorial, you will learn about encapsulation in C++ with the help of programming examples. I will describe each small point related to encapsulation because encapsulation is one of the key features of object-oriented programming. This blog post on encapsulation will be helpful for both beginners and experienced. So let’s start this […]

Encapsulation in C++ With Examples Read More »

Polymorphism in C++

In this blog post tutorial, you will learn about polymorphism in C++ with the help of programming examples. I will describe each small point related to the polymorphism and I will try to make you zero to hero. This blog post on polymorphism will be helpful for both beginners and experienced. So let’s start this

Polymorphism in C++ Read More »

Compile Time Polymorphism with Templates in C++

When thinking of compile-time polymorphism, the first thing that comes to mind is functions overloading.  But here we will learn how to achieve compile-time polymorphism with templates. Polymorphism is one of the four-four basic concepts of OOP (Object Oriented Programming) that are Inheritance, Abstraction, Polymorphism, and Encapsulation. I believe you already know polymorphism and its

Compile Time Polymorphism with Templates in C++ Read More »

MCQ On Exception Handling in C++: Multiple Choice Questions and Answers on C++ Exception Handling

MCQ on exception handling in C++ with answers and explanations for placement tests and job interviews. This C++ MCQ on exception handling is useful for the campus placement for all freshers including Engineering Students, MCA students, Computer and IT Engineers, etc. Our C++ exception handling quiz (C++ exception handling multiple Choice Questions ) focuses on

MCQ On Exception Handling in C++: Multiple Choice Questions and Answers on C++ Exception Handling Read More »

Merge Sort Algorithm

This blog post explains the merge sort algorithm and its implementation using the C programming language. So before writing the C code for the merge sort let’s first understand the merge sort algorithm. What is Merge Sort Algorithm: Merge Sort is one of the most popular sorting algorithms and it is an example of the

Merge Sort Algorithm Read More »