is java purely oop Language?

Answer Posted / sujith

Perfect answer by Swapna. Java is not pure object oriented.
Data types are still not objects except String. I think the
only pure object oriented language still is smalltalk,
though i havent explored much with c#.

Is This Answer Correct ?    45 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is overloading in oop?

566


What are objects in oop?

600


What is ambiguity in inheritance?

615


What is the use of oops?

610


What are benefits of oop?

625






#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

2056


Can static class have constructor?

576


What is persistence in oop?

655


c++ program to swap the objects of two different classes

1749


What is the real time example of inheritance?

629


What is polymorphism oop?

610


What is difference between data abstraction and encapsulation?

608


What is coupling in oop?

583


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1631


any one please tell me the purpose of operator overloading

1959