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


Please Help Members By Posting Answers For Below Questions

Is html an oop?

777


What do you mean by Encapsulation?

803


What is polymorphism explain its types?

912


Why do we use encapsulation in oops?

745


What is difference between multiple inheritance and multilevel inheritance?

875


Can you explain polymorphism?

821


What are functions in oop?

776


Which language is not a true object oriented programming language?

865


Can you inherit a private class?

838


Why polymorphism is used in oops?

790


write knight tour problem which is present in datastructure

2378


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.

921


State what is encapsulation and friend function?

936


What is the purpose of enum?

761


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).

1891