what is the difference between ERROR and EXCEPTION?
Answer Posted / poonam
Error are those that do not allow are program to run. Some
errors cannot be fixed at compilation time they are runtime
errors. But exeptions are those that occur because of the
user during runtime which we are unable to avoid.For that we
use exeption handling to handle such kind of errors. These
allow the programs to execute and exit gracefully...
| Is This Answer Correct ? | 23 Yes | 0 No |
Post New Answer View All Answers
Is abstract thinking intelligence?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
How do you achieve polymorphism?
What are the benefits of interface?
write a programe to calculate the simple intrest and compund intrest using by function overlading
what type of questions
What is the difference between a mixin and inheritance?
What is overloading in oop?
What is polymorphism and why is it important?
what is graphics
Why polymorphism is used in oops?
What is polymorphism explain?
What is difference between abstraction and encapsulation?
What are the data types in oop?
What are two types of polymorphism?