What is "Polymorphism" and what are Polymorphism in VB.Net?
Answer Posted / kalpana
Polymorphism is one of the crucial features of OOP. It
means "one name, multiple forms". It is also called as
Overloading which means the use of same thing for different
purposes. Using Polymorphism we can create as many
functions we want with one function name but with different
argument list. The function performs different operations
based on the argument list in the function call. The exact
function to be invoked will be determined by checking the
type and number of arguments in the function.
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
What is late binding?
Explain namespace?
What would you do to remove microsoft visual basic name space?
Explain the advantages of migrating to vb.net?
Explain how to store decimal data in .net?
Can we use Vb.Net and C# language simultaneously in one .Net application?
Name some of the keywords used in vb.net?
How to run a dos command in vb.net?
How many classes a dll can contain?
Explain the observations between vb.net and vc#.net?
Which class allows an element to be accessed using unique key?
Explain about branching logic control in vb.net?
Which properties are used to bind a DataGridView control?
How does vb.net achieve polymorphism?
Explain the use of new keyword?