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 7. binary 8.… Read More »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 7. binary 8.… Read More »Fill up the blank in C++
SAY ‘TRUE’ OR ‘FALSE’ 1. C++ is a case-insensitive language. 2. Comments in C++ may be specified by /*..*/ or // or –. 3. The… Read More »‘TRUE’ OR ‘FALSE’ in C++
Multiple choice questions in C++ (With answers) 1. An entity representing some characteristics and behaviour is- a) object b) class c) struct d) none of… Read More »Multiple choice questions in C++
Inheritance in C++ Inheritance is the property by virtue of which one class passes over its properties to another class without necessitating modification in the… Read More »Inheritance in C++
Default arguments in C++ and its constraints Default Arguments: The values given to the arguments of the function may be defaulted by supplying the variables… Read More »Default arguments in C++ and its constraints
Exception handling and its classification in C++ Exception Handling: The error handling mechanism of C++ is generally referred to as exception handling. C++ provides a… Read More »Exception handling and its classification 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 these manipulators. Moreover,… Read More »Syntax for creating user defined 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 of input and… Read More »Use of manipulators in C++
Template class in C++ A class which is declared such that it can operate on different data types is referred to as a template class. … Read More »Template class in C++
How is polymorphism achieved at compile time in C++ Polymorphism, in C++, is implemented through overloaded functions and overloaded operators. Function Overloading is also referred… Read More »How is polymorphism achieved at compile time in C++