Answer Posted / sumiya yeasmin shorna
ploymorphism is a form of simple name multiple
implementation or method and also polymorphism is a function
overloading.
example:
void myclass();
void ~myclass();
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is class and example?
Are polymorphisms mutations?
How many human genes are polymorphic?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What does it mean when someone says I oop?
Is html an oop?
What are the data types in oop?
write string class as your own class in java without using any built-in function
What are the important components of cohesion?
What is the advantage of oop over procedural language?
How is class defined?
what is the sylabus for priliminaries?
What is inheritance in simple words?
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.
Can a destructor be called directly?