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 the fundamental idea of oop?
What is polymorphism and its types?
What is meant by multiple inheritance?
What is inheritance in simple words?
What is encapsulation in ict?
Why is polymorphism used?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is meant by oops concept?
Can we create object of interface?
What are the benefits of oop?
What is abstraction in oop with example?
Write a c++ program to display pass and fail for three student using static member function
What is oops concept with example?
What is purpose of inheritance?
Who invented oop?