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
Why do we use polymorphism?
What is basic concept of oop?
Why is polymorphism important in oop?
What are oops functions?
Are polymorphisms mutations?
What is data binding in oops?
What are the benefits of interface?
What is interface in oop?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
How to improve object oriented design skills?
What is the example of polymorphism?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is abstraction and encapsulation?
Why do while loop is used?
Can we create object of interface?