Answer Posted / rajeesh
polymorphism is a programming language feature that allows
values of different data types to be handled using a uniform
interface.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are the components of marker interface?
What is coupling in oop?
What is a class and object?
What causes polymorphism?
Where is pseudocode used?
What is cohesion in oop?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is oops and why we use oops?
What is the difference between inheritance and polymorphism?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What do you mean by Encapsulation?
Can main method override?
What is polymorphism what is it for and how is it used?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
What does I oop mean?