What are the different types of polymorphism?

Answer Posted / uio

there are two types of palymorphism
1.operator overloading
2.function overloading

Is This Answer Correct ?    2 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the main features of c++?

639


What does override mean in c++?

683


What are the uses of c++ in the real world?

658


Define basic type of variable used for a different condition in C++?

759


Is python written in c or c++?

736






What are separators in c++?

716


What is the purpose of templates in c++?

658


How do you flush std cout?

683


What is c++ virtual inheritance?

691


can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is somewhere #include #include #include using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<

1739


Why c++ is the best language?

690


what is c++

1882


How do I write a c++ program?

687


What are the advantage of using register variables?

745


Why are pointers used?

654