Please tell me the oops concept with detailed answer
Answer Posted / sree
oops s a object oriented programing language.....
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is the difference between inheritance and polymorphism?
How to call a non virtual function in the derived class by using base class pointer
What is encapsulation in oop?
Why do we use inheritance?
Why is destructor used?
What is the point of oop?
What makes a language oop?
What is destructor example?
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.
What are the 4 main oop principles?
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.
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
Plese get me a perfect C++ program for railway/airway reservation with all details.
What is the problem with multiple inheritance?
What are objects in oop?