Which of the following is not the characteristic of a class?
Which of the following cannot be used with the keyword virtual?
Which of the following is not one of the sizes of the floating point types?
How can formatting the source code improve the code?
(i) The value stored in the CPU register can always be accessed faster than that stored in memory.
(ii) A register storage class variable will always be stored in a CPU register.
What does it mean when we say that an algorithm X is asymptotically more efficient than Y?
Sheetal wants to share her code with a colleague, who may modify it. Thus she wants to include the date of the program creation, the author and other she wants to include the date of the program creation, the author and other information with the program. What component should she use?
What is the output of the following C++ code?
#include
using namespace std;
class Base
{
public:
virtual void show() = 0;
};
int main(void)
{
Base b;
Base *bp;
return 0;
}
Which of the following is correct about the use of 'new' and 'malloc' in C++?