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 are properties in oop?
Why do we use polymorphism in oops?
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.
What are classes oop?
What are the features of oop?
What is inheritance and how many types of inheritance?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
write a program that takes input in digits and display the result in words from 1 to 1000
What does and I oop mean?
Why multiple inheritance is not possible?
What is class and example?
What is variable example?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is static in oop?
What is polymorphism programming?