Answer Posted / prasath
polymorphism is defined as one operator or function used in more than one work. it is called polymorphism.
ex:
OPERATOR OVERLOADING
2+3=5
1.2+2.3=3.5
"HA"+"I"="HAI"
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which bit wise operator is suitable for turning off a particular bit in a number?
What is the use of ::(scope resolution operator)?
Explain what is class definition in c++ ?
Write a program to add three numbers in C++ utilizing classes.
What is the use of object in c++?
What is a virtual destructor? Explain the use of it?
Can a constructor be private?
What is the difference between #import and #include in c++?
Should a constructor be public or private?
What is class and structure in c++?
What is abstraction with real time example?
Explain the concept of friend function in c++?
What are c++ data types?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?