Whatis the difference between oop and object based language

Answer Posted / ankita

OOP= object based language + inheritance + dynamic binding

That means object based language doesnt support inheritance
and dynamic binding, where as OOP supports.

Is This Answer Correct ?    11 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 4 pillars of oop?

887


How do you achieve runtime polymorphism?

740


hi all..i want to know oops concepts clearly can any1 explain??

1890


What is class and object with example?

815


Why is abstraction needed?

756


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2377


Advantage and disadvantage of routing in telecom sector

1022


How oops is better than procedural?

827


What is a null tree?

858


What is object and example?

871


What are benefits of oop?

872


What are classes oop?

789


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1621


What is persistence in oop?

860


what is graphics

2204