Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is difference b/w object based and object oriented
programming language?

Answer Posted / v.mahesh kumar reddy

the main difference b/t the object oriented programing language and object base programing language is that object based programing language supports all features of oop except inhetance and polymorphysm

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are properties in oop?

1145


Can enum be null?

1071


Is oop better than procedural?

1089


Can we create object of abstract class?

1152


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

2606


What type of loop is a for loop?

1134


What is for loop and its syntax?

1136


which feature are not hold visual basic of oop?

2237


why reinterpret cast is considered dangerous?

2451


What is methods in oop?

1036


What is class encapsulation?

1146


Can a varargs method be overloaded?

1158


when to use 'mutable' keyword and when to use 'const cast' in c++

2219


What is the problem with multiple inheritance?

1238


What is the main purpose of inheritance law?

1251