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 encapsulation and abstraction? How are they implemented in C++?

611


What are the 3 principles of oop?

587


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1629


#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

2141


What is static modifier?

612






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?

1359


What is the oops and benefits of oops programming?

532


write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.

1759


What is polymorphism explain?

650


Can we override main method?

580


What is stream in oop?

807


What is advantage of inheritance?

664


What is property in oops?

538


What is the difference between a constructor and a destructor?

587


What do you mean by Encapsulation?

624