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 is property in oops?

789


Why is oop better than procedural?

809


write string class as your own class in java without using any built-in function

2211


What is encapsulation with real life example?

790


What is oops and its features?

831


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6372


Which is not an object oriented programming language?

737


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1878


Which language is pure oop?

754


What is the significance of classes in oop?

805


What is overriding in oops?

827


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

1914


What is the example of polymorphism?

752


Why do we use polymorphism in oops?

788


What exactly is polymorphism?

864