R
Q. Which of the following are true about static member function? 1. They can access non-static data members. 2. They can call only other static member functions. 3. They can access global functions and data. 4. They can have this pointer. 5. They cannot be declared as const or volatile.
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the Difference between struct and class in terms of Access Modifier?
Q. What happens if the base and derived class contains definition of a function with same prototype?
Q. Which of the following operators is called “Input Flow Operator”?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x = y);
Q. Which operator has more precedence in below list?
Q. Private members of the class are not inheritable.
Q. What is the output of the following C++ code?
Q. If a program uses Inline Function, then the function is expanded inline at ___________.
Q. Which storage class defines local variable known to the block in which they are defined?
Q. A class's __________ is called when an object is destroyed.
Discusssion
Login to discuss.