Answer Posted / kirti
Multiple Inheritance is an ability to inherit from more than one base class i.e. ability of a class to have more than one superclass, by inheriting from different sources and thus combine separately-defined behaviors in a single class. There are two types of multiple inheritance: multiple type/interface inheritance and multiple implementation inheritance. C# & VB.NET supports only multiple type/interface inheritance, i.e.
you can derive an class/interface from multiple interfaces. There is no support for multiple implementation inheritance in .NET. That means a class can only derived from one class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are Validation Annotations?
Explain what platforms does the .net framework run on?
How OS come to know whether to load the .net framework when we run an .exe created using .Net framework?
what is linq to entities?
mention what is the key advantage of using entity framework or ef?
How to return the JSON from action method in ASP.Net MVC?
What is meant by domain model?
Explain Bundle.Config in ASP.Net MVC4?
What are the new enhancements done in default project template of asp.net mvc 4?
Explain how you can implement Ajax in MVC?
Explain the methods used to render the views in ASP.Net MVC?
What is mvc entity framework?
What is the difference between renderaction and renderpartial?
Can you explain model, controller and view in mvc?
What are the components required to create a route in ASP.Net MVC?