Types of inheritance How many types of inheritance are here in C++? Lets learn about each in detail. As we know that when we use the word “shapes” in geometry then it means that shape can be a rectangle, a Read More …
Category: Object Oriented Programming
What are the decision making statements in C++?
What are the decision making statements in c++? What are the decision making statements in C++? Generally a program’s structure flows sequentially. By sequentially we mean that each instruction is executed one after another. This flow can be interrupted or Read More …
How to use rand() function in C++?
Introduction to random numbers in c++ How to use rand() function in C++? How does it generate random number? An interesting programming application in C++ is the random number generation. Different game playing programs can be developed using its concept Read More …
what to sort the elements of array using Bubble sort algorithm?
Sorting algorithms for arrays How many types of sorting Algorithms for arrays? Why we need to sort the numbers? In our daily life there are many cases where we need to sort (arrange in ascending or descending order) the data. Read More …
Design a project of vehicle parking in C++
Design a project of vehicle parking in C++ Design a project of vehicle parking in C++. Designing a program of vehicles parking from which we can collect useful information. This information can be used by people to get the idea Read More …
Design a matrix calculator in c++
How to design a matrix calculator in c++ Objective: Design a matrix calculator in c++ . To make the solving problem about the simple matrix easy with the help of C++ program. Each step is explained below. Abstract: In this Read More …
How to define structures in C++? What is meant by structures within structures?
Introduction to structures How to define structures in C++? What is meant by structures within structures? In programming, we encounter different types of variables. Some of them are of int type, some are floats, and others are double or character. Read More …
what is the difference b/w synchronous & asynchronous communication?
what is the difference b/w synchronous & asynchronous communication? what is the difference b/w synchronous & asynchronous communication? Transmission is the act of transferring or transferring something from one position or person to another. Basically, it is a method of Read More …
What is the difference between if and if-else statement ?
What is the difference between if and if-else statement ? What is the difference between if and if-else statement ? With the if statement, a program will execute the true code block or do nothing. It is little bit different Read More …