what is main difference between object oriented object base
Answer Posted / aok pandey
object oriented programming language = object based
programming language + inhritance + Dynamic binding
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is html an oop?
What do you mean by Encapsulation?
What is polymorphism explain its types?
Why do we use encapsulation in oops?
What is difference between multiple inheritance and multilevel inheritance?
Can you explain polymorphism?
What are functions in oop?
Which language is not a true object oriented programming language?
Can you inherit a private class?
Why polymorphism is used in oops?
write knight tour problem which is present in datastructure
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.
State what is encapsulation and friend function?
What is the purpose of enum?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).