Question
Is java pure object oriented or not? if yes, give the valid
reason.
Question Submitted By :: Ankitkumar.kumar2
I also faced this Question!!
Rank
Answer Posted By
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 1
No, it is not purely object oriented because of primitive
data types.
Mishal Tripathi
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 2
java is not pure object oriented programming language,becoz
datatypes in java are not objects
Seshu Godavarthi
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 3
Java is pure object oriented because java will allow the
data representation inside the classes only.
Vasavi
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 4
yes, JAVA is pure object oriented Because a large application
consists of components objects, which interact with each
other. These components can be used to develop various
applications.
Guest
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 5
No,
java is not pure object oriented programming language
because java does not support the pointer concept.
Brijendra Kumar(java Xavient)
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 6
yes,java is pure object oriented.because each main should
enclosed with one class.the class comes under the object
oriented concept only.
Vino
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 7
No,
1.Primitive data types are present
2.Multiple inheritance is not support which is OOPs concept.
Supriya
Re: Is java pure object oriented or not? if yes, give the valid
reason.
Answer
# 8
No,
Reason 1:- All predefined types are not Objects.
Example:- int a=10;
Reason 2:- All operations performed on objects are not
only through methods exposed at the objects but also we can
perform directly ., for example ., we can replace String
concatenate method concat() by '+'.,
Example:- String a="JAVA"+"notfullyOOL";
Raamnaresh Reddy.r