Answer Posted / fahad shaikh
#Characteristics of OOPs
1. Objects.
2. Classes.
3. Data Abstraction.
4. Data Encapsulation.
5. Inheritance.
6. Polymorphism.
7. Dynamic Binding.
8. Operator Overloading & Function Overloading.
| Is This Answer Correct ? | 9 Yes | 8 No |
Post New Answer View All Answers
What are the two different types of polymorphism?
write a C++ program for booking using constructor and destructor.
What is the main purpose of inheritance law?
What are main features of oop?
Can a destructor be called directly?
What is encapsulation in simple terms?
What is polymorphism and its types?
Why is polymorphism needed?
What is inheritance write a program to show use of inheritance?
Is abstract thinking intelligence?
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 achieve polymorphism?
What is the oops and benefits of oops programming?
What is interface? When and where is it used?
What is the difference between a mixin and inheritance?