is java purely oop Language?

Answer Posted / vinay chowdary

According to oopl specification a language which considers
each and every component as an object.
1.But in java primitive datatypes are there so we can
consider java as not fullfledged oopl.
2.all of u guys plz think that java also providing wrapper
classes for each primitive,so can't it be full object
orientation(plz respond me on this point)

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is multilevel inheritance?

917


#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

2296


program for insertion ,deletion,sorting in double link list

2422


What is abstraction oop?

807


Who invented oop?

827






When not to use object oriented programming?

747


How Do you Code Composition and Aggregation in C++ ?

24642


What is coupling in oops?

795


INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?

1854


just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6687


What is class and object in oops?

797


write string class as your own class in java without using any built-in function

2181


Why is polymorphism important in oop?

796


Can abstract class have normal methods?

768


What is object-oriented programming? Webopedia definition

924