is java purely oop Language?

Answer Posted / manik

yes.
To be truly considered "object oriented", a programming language should support at a minimum four characteristics:
Encapsulation--implements information hiding and modularity (abstraction)
Polymorphism--the same message sent to different objects results in behavior that's dependent on the nature of the object receiving the message
Inheritance--you define new classes and behavior based on existing classes to obtain code re-use and code organization
Dynamic binding--objects could come from anywhere, possibly across the network. You need to be able to send messages to objects without having to know their specific type at the time you write your code. Dynamic binding provides maximum flexibility while a program is executing
Java meets these requirements nicely, and adds considerable run-time support to make your software development job easier.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are properties in oop?

832


Why do we use polymorphism in oops?

804


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1725


What are classes oop?

812


What are the features of oop?

863


What is inheritance and how many types of inheritance?

848


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

1923


write a program that takes input in digits and display the result in words from 1 to 1000

2208


What does and I oop mean?

863


Why multiple inheritance is not possible?

825


What is class and example?

833


What is variable example?

816


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2243


What is static in oop?

841


What is polymorphism programming?

878