is java is pure object oriented programming langauge?
Answer Sandeep, Java is not considered a pure object oriented language. In such a language, ALL data items are instances of object classes, and all operators and functions of any kind are methods of classes. In Java, there are object data types and non-object “primitive” data types like int and float and char. Also, there are operators which do not correspond to methods of any class, such as “+” and “<". With Java 1.5, Java got a little closer to being pure object oriented, because it allows primitive types to be treated as objects in many situations. (so-called autoboxing) Hope this helps...