What is class and object in oops?
No Answer is Posted For this Question
Be the First to Post Answer
how does a main() in C++ is different from main() in C?
Can a varargs method be overloaded?
Why interface is used?
What is stream in oop?
what's the basic's in dot net
What is super in oop?
What is a class and object?
What are objects in oop?
explain dynamic binding by drowing
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 is a linked list?
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass