Answer Posted / kalyan
it is a concept which uses a method of using objects
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How to hide the base class functionality in Inheritance?
What is difference between inheritance and polymorphism?
What is oops?what is its use in software engineering?
Plese get me a perfect C++ program for railway/airway reservation with all details.
How to call a non virtual function in the derived class by using base class pointer
What do you mean by variable?
Can we create object of interface?
Will I be able to get a picture in D drive to the c++ program? If so, help me out?
Why it is called runtime polymorphism?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
What does and I oop and sksksk mean?
How oops is better than procedural?
What is meant by oops concept?
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.
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.