how many trys can we write in one class
Answers were Sorted based on User's Feedback
Answer / sreedevi.m0966
many. we cant write try in try but we can write man trys in
one class
| Is This Answer Correct ? | 16 Yes | 2 No |
Answer / anup
Number of try statement can be write in one class according
to our need.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nagenpresearch
You can use many numbers of try in a single class according to your requirment
| Is This Answer Correct ? | 1 Yes | 0 No |
Is recursion allowed in inline functions?
What problem does the namespace feature solve?
What is the difference between interpreters and compilers?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What is function overriding in c++?
What do you understand by a pure virtual member function?
What is a virtual destructor? Explain the use of it?
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
Explain the operation of overloading of an assignment operator.
what is pulse code modulation?
check whether a no is prime or not.