How would you represent an error detected during constructor
of an object?
Answer / arash
errors in constructors are represented by exceptions
| Is This Answer Correct ? | 1 Yes | 0 No |
describe private access specifiers?
what is the use of Namespace in c++.
How to write a program such that it will delete itself after exectution?
Array base access faster or pointer base access is faster?
Explain container class.
What is switch case in c++ syntax?
Types of storage and scope of each type
Explain how the virtual base class is different from the conventional base classes of the opps.
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
const char * char * const What is the differnce between the above two?
Brief explaination about #include<iostream.h>, cin and cout
What is the difference between Char a[ ]=”string” and char *a=”String”