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
What is property in oops?
Why is oop better than procedural?
write string class as your own class in java without using any built-in function
What is encapsulation with real life example?
What is oops and its features?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
Which is not an object oriented programming language?
Will I be able to get a picture in D drive to the c++ program? If so, help me out?
Which language is pure oop?
What is the significance of classes in oop?
What is overriding in oops?
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).
What is the example of polymorphism?
Why do we use polymorphism in oops?
What exactly is polymorphism?