Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is polymorphism? Explain with an example?
What is polymorphism? Explain with an example?
✍: Guest
"Poly" means "many" and "morph" means "form". Polymorphism is the ability of an object (or
reference) to assume (be replaced by) or become many different forms of object.
Example: function overloading, function overriding, virtual functions. Another example can be a plus
‘+’ sign, used for adding two integers or for using it to concatenate two strings.
2012-02-24, 2715👍, 0💬
Popular Posts:
Who Developed HTML? HTML was originally developed by Tim Berners-Lee while at CERN, and popularized ...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...