what is the difference between ERROR and EXCEPTION?
Answer Posted / maheswarreddy
error is mistake which takes place in step wise execution of a program.exception is nothing but wat v can catch the error to solve it.
| Is This Answer Correct ? | 16 Yes | 7 No |
Post New Answer View All Answers
What is coupling in oop?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
What are the 4 main oop principles?
#include
What is interface in oop?
What is the difference between static polymorphism and dynamic polymorphism?
What is meant by oops concept?
What is an interface in oop?
What is polymorphism oop?
write a program to find 2^n+1 ?
What are objects in oop?
What are the 4 pillars of oop?
what type of questions
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
How do you use inheritance in unity?