answersLogoWhite

0


Best Answer

Object-oriented (OO) applications can be written in either conventional languages or OOPLs, but they are much easier to write in languages especially designed for OO programming. OO language experts divide OOPLs into two categories, hybrid languages and pure OO languages. Hybrid languages are based on some non-OO model that has been enhanced with OO concepts. C++ (a superset of C), Ada 95, and CLOS (an object-enhanced version of LISP) are hybrid languages. Pure OO languages are based entirely on OO principles; Smalltalk, Eiffel, Java, and Simula are pure OO languages.

Reference: Tokar, Joyce L. "Ada 95: The Language for the 90's and Beyond."

" According to me JAVA is not a pure oop Language ,because java contains primitive datatypes that's not an Objects."

  • Smalltalk
  • Eiffel
  • java

a programming language that includes all the oops concepts i,e object, class , inheritance,abstraction, encapsulation, data binding, and message passing is called a completely object oriented programming..

example:java.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

Languages where all types, including primitive types such as integers, are implemented as objects. Java is a pure object oriented language. C++ is not pure because integers, floating point values and pointers are primitive data types that are not implemented as objects. As a result, Java is easier to program, but C++ is more efficient.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Blitz is a very good object-oriented language, being easy to learn, and at the same time very powerful. At the time of writing this, BlitzPlus is free, and there is a demo of a 3D engine called Xors3D, which adds 3D functions more powerful to those of Blitz3D, and of a similair price (both around $100). This is the only object-oriented language I have learnt, and it's very good.

Note to contributors: If you know an object-oriented language that is also very good, please add it to this.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

SmallTalk is purely object oriented programming language.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

pure oop means ,no primitive types and boolean ,int and methods are all objects

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

An object oriented programming language that has no concept of primitive data types. All data types are implemented as objects.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Its C++ which introduces the concept of object oriented programming.

If you could get any help from the answer then plz increase my trust point.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Popular object-oriented programming languages are Visual Basic .NET, Java, C++, and Python.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is pure object oriented language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is Eiffel pure object oriented language?

Yes.


Is Java a pure object oriented programming language?

Yes.


What are the features which makes Java pure object oriented?

Java is actually not a pure object oriented programming language. See the related question below for the reasons why.


Is vc plus plus is an object oriented language?

Yes, but it is not a pure object-oriented language. Since C++ evolved from C, it still makes use of primitives which are not part of the object-oriented paradigm.


Is c pure object oriented language?

No, C has nothing to do with OO.


Is c plus plus is pure object oriented?

No. C is not object-oriented, it is a procedural language.C++, while object-oriented, is not purelyobject-oriented. One of the requirements for a pure object-oriented language is that everything is an object. C++ still has primitive data types (int, long, double, etc.), and so is not purely object-oriented.


Is c an object oriented programing language?

C language is not a program, and it isn't an object-oriented language either.


How do you define pure object oriented language?

If an object oriented language supports the concept of primitive data types then the language is not a pure. C++ is not pure because it supports raw data pointers and fundamental types like int and float, none of which have member methods associated with them. Java, on the other hand, is pure object oriented because it has no primitive data types; all types are implemented as objects. Java is therefore easier to use than C++, but is less efficient because it provides no low-level interaction with the machine.


Is c is complete object oriented programming language?

No. C is not object oriented. C++ is object oriented.


What software help bill gates become one of the richest people in the world?

Q. What is the difference between pure object oriented language & object oriented language?? plz give ans this question QUICK.......... shyamniitasp.net@gmail.com


Which language is 100 percent pure object oriented language?

The languages C# and Ruby are notable for their pure object oriented design. You can even call instance functions on literals, such as 10.to_s (Ruby) or 10.ToString() (C#). Other object-oriented designs tend to treat primitives as non-objects, such as in Java, and are therefore not technically "100%" object-oriented.


Is Java a true object oriented language?

since Java have primitive data types, I think its not pure OO