java is not purely oops because of primitive types in java like int and float double
Java is actually not a pure object oriented programming language. See the related question below for the reasons why.
Yes.
since Java have primitive data types, I think its not pure OO
Yes, java is a pure object oriented program because it derives its syntax from C and object oriented features from C++. Moreover its a platform independent language which means it can be run any where any time in any environment.Thus, it's appropriate to say java is a pure OOP.
C is a procedure oriented language ,Where C++ & java are object oriented language.But java is platform independent.So generally C is called POP.C++ is called OOP.But java is OOP , which is platform independent.If java does not support primitive data type then it is called as pure object oriented language.
Java IS a pure OOP language. All types, including the built-in types, are implemented as objects.
Java is an object oriented language, and it works with classes and objects.
Java is the complete object oriented Programming Language as every thing in java is an object,
Java is called a "pure" object-oriented language because it requires that all code written in it be wrapped in objects. This differs from the more common meaning of "pure" object-oriented (everything is an object) in that Java has primitive types and primitive operations on them - int, char, double, float, long and addition, subtraction, multiplication, division. A real example of a PURE object-oriented language is Smalltalk, one of Java's predecessors.
No, it is not strictly object oriented. Java still maintains the concept of primitive data types, such as char, int, long, float, double, boolean. And as such, these are not objects. In a true object oriented language, everything would be represented as an object, including operators. sory but wappers implement this concept n everything in java done by a class n a object it strickly follow the 3 rules of oops for detail refers java2 complete reference chapter2
Java is not a true object-oriented language.One of the requirements for such a title is that everything must be an object. Java contains non-object primitive values (such as int, float, boolean, etc.).
Yes!