what is the difference between ERROR and EXCEPTION?
Answer Posted / d.raji
Error: we can find it(Which error occured) when compliation.
Exception: we can't find it(Which error occured)when
compliation and also in running time
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What is encapsulation with real life example?
• What are the desirable attributes for memory managment?
what is the drawback of classical methods in oops?
when to use 'mutable' keyword and when to use 'const cast' in c++
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
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is the real time example of encapsulation?
What is the purpose of polymorphism?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is abstract class in oop?
What is the problem with multiple inheritance?
What is abstraction in oops with example?
What is the use of oops?
Why is encapsulation used?
What are main features of oop?