adplus-dvertising
frame-decoration

Question

The new operator

a.

returns a pointer to the variable

b.

creates a variable called new

c.

obtains memory for a new variable

d.

tells how much memory is available

Answer: (c).obtains memory for a new variable

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The new operator

Similar Questions

Discover Related MCQs

Q. Consider the following statements:
int x = 22,y=15;
x = (x>y) ? (x+y) : (x-y);
What will be the value of x after executing these statements?

Q. An exception is caused by

Q. A template class

Q. Which of the following is the valid class declaration header for the derived class d with base classes b1 and b2?

Q. A library function exit() causes an exit from

Q. RunTime polymorphism is achieved by ___________

Q. An array element is accessed using

Q. If there is a pointer p to object of a base class and it contains the address of an object of a derived class and both classes contain a virtual member function abc(), then the statement p->abc(); will cause the version of abc() in the __________class to be executed.

Q. A pure virtual function is a virtual function that

Q. A static function

Q. We can output text to an object of class ostream using the insertion operator<< because

Q. The statement f1.write((char*)&obj1, sizeof(obj1));

Q. To convert from a user defined class to a basic type, you would most likely use

Q. Which of the following is not the characteristic of constructor.

Q. Name the header file to be included for the use of built in function isalnum().

Q. A class defined within another class is:

Q. What will be the values of x, m and n after the execution of the following statements?
int x, m, n;
m = 10;
n = 15;
x = ++m + n++;

Q. Which of the following will produce a value 10 if x = 9.7?

Q. The major goal of inheritance in c++ is:

Q. Consider the following class definitions:
class a
{
};
class b: protected a
{
};
What happens when we try to compile this class?