Category: C++
Fill up the blank in C++
Fill up the blank in C++ ( SET- I ) 1. hecadecimal 2. derived 3. cout 4. sensitive 5. enumerator 6. \0n […]
‘TRUE’ OR ‘FALSE’ in C++
SAY ‘TRUE’ OR ‘FALSE’ 1. C++ is a case-insensitive language. 2. Comments in C++ may be specified by /*..*/ or // or […]
Multiple choice questions in C++
Multiple choice questions in C++ (With answers) 1. An entity representing some characteristics and behaviour is-a) objectb) classc) structd) none of the […]
Inheritance in C++
Inheritance in C++ Inheritance is the property by virtue of which one class passes over its properties to another class without necessitating […]
Default arguments in C++ and its constraints
Default arguments in C++ and its constraints Default Arguments: The values given to the arguments of the function may be defaulted by […]
Exception handling and its classification in C++
Exception handling and its classification in C++ Exception Handling: The error handling mechanism of C++ is generally referred to as exception handling. […]
Syntax for creating user defined manipulators in C++
Syntax for creating user defined manipulators in C++ C++ provides a set of predefined manipulators. The header file iomanip.h header file contains […]
Use of manipulators in C++
Use of manipulators in C++ Manipulators are stream functions available in iomanip.h header file and are used to change the default formats […]
Template class in C++
Template class in C++ A class which is declared such that it can operate on different data types is referred to as […]