is java purely oop Language?

Answer Posted / vijay tandel

Java is not pure OOP Language because it uses primitive data
types.

Is This Answer Correct ?    17 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is encapsulation with example?

581


What is polymorphism explain?

693


what are the ways in which a constructors can be called?

1585


What does it mean when someone says I oop?

587


#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

2170






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

1623


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

1767


Why interface is used?

555


Can enum be null?

587


what's the basic's in dot net

1740


What is the problem with multiple inheritance?

586


hi all..i want to know oops concepts clearly can any1 explain??

1683


What is the benefit of oop?

570


What is encapsulation in oops?

541


State what is encapsulation and friend function?

701