Podcast
Questions and Answers
Abstract class in C++:
Abstract class in C++:
output:
output:
The order of creating members of a compound object in C++ is as follows:
The order of creating members of a compound object in C++ is as follows:
Class destructor in C++ has the property:
Class destructor in C++ has the property:
Signup and view all the answers
The 'this' keyword in C++ has the following properties:
The 'this' keyword in C++ has the following properties:
Signup and view all the answers
execution of the program will display :
execution of the program will display :
Signup and view all the answers
Select one:
Select one:
Signup and view all the answers
Constructors in C++ do NOT have properties:
Constructors in C++ do NOT have properties:
Signup and view all the answers
Encapsulation in C++ has the following properties:
Encapsulation in C++ has the following properties:
Signup and view all the answers
The following declaration in C++:
class complex;
class Test {
void fun() throw ( int, complex );
};
declares:
The following declaration in C++:
class complex; class Test { void fun() throw ( int, complex ); };
declares:
Signup and view all the answers