In OOP, a problem is considered as a collection of number of entities called ………………
In C++ ………………… operator is used for Dynamic memory allocation.
Operators such as …………………. cannot be overloaded.
The …………………. objects have values that can be tested for various error conditions.
Which function return the current position of the get or put pointer in bytes.
The first index number in an array starts with ………………………. and the index number of an array of size n will be …………
To overload an operator ………………… keyword must be used along with the operator to be overloaded.
What is the output of the program
#include<iostream.h>
void main()
{
int n=1;
cout<<endl<<“The numbers are;”<<endl;
do
{
cout <<n<<“t”;
n++;
} while (n<=100);
cout <<endl;
Everything defined at the program scope level (ie. outside functions and classes) is said to be ……………
Because the lifetime of a local variable is limited and determined automatically, these variables are also called ……………………….
……………. allows that a section of a program is compiled only if the defined constant that is specified as the parameter has been defined, independently of its value.
Which of the following is/are the header files listed in C++ standard library.
i) <ctype.h> ii) <float.h> iii) <date.h> iv) <limits.h>
The C++ header file …………….. contains macros and information for adding diagnostics that aid program debugging.
…………… is the header file that contains functions prototypes and types for manipulating the time and date.
The C++ header file ……………….. contains function prototypes for the standard input and standard output functions.
……………. is the header file listed in C++ standard library that contains function prototypes for the stream manipulators that enable formatting of streams of data.
There is a unique function in C++ program by where all C++ programs start their execution with …….
Which of the following is not a jump statement in C++?