Answer Posted / snehalata
Method overriding means having a different implementation
of the same method in the inherited class. These two
methods would have the same signature, but different
implementation. One of these would exist in the base class
and another in the derived class. These cannot exist in the
same class.
Overriding methods
Overriding method definitions
In a derived class, if you include a method definition that
has the same name and exactly the same number and types of
parameters as a method already defined in the base class,
this new definition replaces the old definition of the
method.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is asp.net web pages?
What’s the catch?
Is oauth for authentication or authorization?
What is global.asax file used for?
Where sessions are stored?
Which protocol is used to call web service?
What is difference between URL and URI?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
Explain About WebService
Define web.config in .net?
What is cross page posting? How is it done?
What setting must be added in the configuration file to deny a particular user from accessing the secured resources?
What are the Types of objects in ASP
What are the 3 types of web?
Why will you usually create an aspnet user account in the database for an asp.net web application?