answersLogoWhite

0


Best Answer

Java is a OOP language and it is not a pure Object Based Programming Language.

Many languages are Object Oriented. There are seven qualities to be satisfied for a programming language to be pure Object Oriented. They are:

  1. Encapsulation/Data Hiding
  2. Inheritance
  3. Polymorphism
  4. Abstraction
  5. All predefined types are objects
  6. All operations are performed by sending messages to objects
  7. All user defined types are objects.

Java is not because it supports Primitive datatype such as int, byte, long... etc, to be used, which are not objects.

Contrast with a pure OOP language like Smalltalk, where there are no primitive types, and boolean, int and methods are all objects.

User Avatar

Wiki User

2012-04-27 20:54:41
This answer is:
User Avatar
Study guides

What is a programming language

What does DOS stand for

What is a software that is distributed for free

What do unix and Linux have in common

➡️
See all cards
3.95
61 Reviews

Add your answer:

Earn +20 pts
Q: Why is Java not a pure OOP Language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is java a pure oop language or not?

Yes, it is pure OOP.


Does java is pure oop language?

Yes.


Is java an pure oop or not?

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.


Why are the java called pure object oriented programming language?

beoz..all methods and variable are written only in class ...and main thing is main method is also written in class,,which is not written in c++ ..hence the java is fully pure oop language


Why java is not purely object oriented programming language?

Java IS a pure OOP language. All types, including the built-in types, are implemented as objects.


What is the difference between cc plus plus and java?

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.


What do you mean by pure OOP language?

that all values are objects essentially


What is the need for oops paradigm in Hindi?

There is no need for the OOP paradigm in Hindi. Hindi is a natural language whereas OOP applies to object-oriented programming (OOP) languages such as C++ and Java.


What is the advantage of java comparing with other programming languages?

Java is an object-oriented programming (OOP) language, which basically means that you can do more with it than you can do with a language that is not object-oriented.


Why is java language better than assembly language?

Beacuase Java's Concept is OOP object oriented programming and with grate feature include better then assembly lang.


Why is C plus plus not a pure OOP Language?

C++ is not a pure OOP language because it supports the concept of primitives, such as int, char and bool, as well as pointer variables. A pure OOP language has none of these: all so-called "primitives" are actually implemented as objects, each with associated member methods, such as int::AsString(). C++ primitives have no associated methods whatsoever.


Why is Java called OOP Language?

Java is called Object Oriented Programming Language because in Java, you can implement all the Object Oriented methodologies (inheritance, multi-inheritance, polymorphism, encapsulation) and Programing paradigm in Java is also Object Oriented.

People also asked