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

is java purely oop Language?

Answer Posted / raji

Java is not a pure object oriented language because it
support primitive data types( int,float,double,......). Pure
object oriented language means everything should be declared
in objects. SMALLTALK is an example for a pure object
oriented language.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why it is called runtime polymorphism?

1123


What does I oop mean?

1064


What does <> mean pseudocode?

1173


Which language is not a true object oriented programming language?

1126


what are the different types of qualifier in java?

2261


What is polymorphism in oop example?

1017


What is abstraction in oops?

1042


why reinterpret cast is considered dangerous?

2384


What is multilevel inheritance in oop?

1022


What is encapsulation with real life example?

1030


What is the example of polymorphism?

1113


Why is oop better than procedural?

1069


Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer

2146


#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

2610


What is polymorphism and why is it important?

1034