If-Else Program Examples

Example : A C++ program to check whether the given no. is odd or even. Number is given as per user’s choice. Example : A C++ program to check whether the given no. is +ive, -ive or zero. Example : A C++ program to display the largest value among three Read more…

Loading

Interview Questions in C++

The topic-wise interview questions in C++ are – OOPS Ques. : What is OOPS? Ques. : What is C++? Ques. : What is Data Hiding? Ques. : What is Encapsulation? Ques. : What is Abstraction? C++ Fundamental Ques. : What is C++? Ques. : What are the Data type in Read more…

Loading

Control Statements in C++

Control Statements in C++ may broadly classified into – Introduction of Control Statements in C++ A Block/Compound Statement is a group of statements that are separated by semicolons (;)and are included/ grouped in a block enclosed in braces { }.For example: – { statement1; statement2; statement3; … } Definition of Control Read more…

Loading

Fundamental of OOPs

The fundamental of OOPs include – Definition of OOPs The term Object-Oriented Programming” (OOP) was coined by Alan Kay circa in 1966 or 1967 while he was at grad school. Ivan Sutherland’s seminal Sketchpad application was an early inspiration for OOP. It was created between 1961 and 1962 and published in his Sketchpad Read more…

Loading

Reference Books and Websites in C++

A list of popular Reference Books and Websites in C++ is described below Reference Books in C++ Slno. Name of Books Author Publications 01. The C++ Programming Language B. Stroustrup Pearson/Addison-wesley Publication,1997. 02. Mastering C++ K. R. Venu Gopal, Raj Kumar Buyya, T Ravishankar Tata-McGraw-Hill Publishing Company Limited, New Delhi. Read more…

Loading

C++ Terminology

List of Commonly used C++ Terminology mentioned below STL(Standard Template Library): STL (Standard Template Library) in C++ is a collection of powerful data structures and algorithms that can be used to solve a wide variety of programming problems. The STL is a part of the C++ Standard Library and provides Read more…

Loading

Difference Between in C++

List of Popular Difference between in C++ Difference Between C++ and Java SlNo C++ Java 1. C++ support Pointer, Goto statement, Structure & Unions, Multiple Inheritance, Operator Overloading, Header Files, Global Variables, Template class concept. Java does not support Pointer, Goto statement, Structure & Unions, Multiple Inheritance, Operator Overloading, Header Read more…

Loading