Please can any tell what is the difference between method
overloading and overriding in c#.net ?
Answers were Sorted based on User's Feedback
Answer / fathima2407
overloading-> it is the process of making an operator or
any other function to exhibit different behaviour in
different instances.
overridding->it is the process of calling the particular
function which is used in the program in different
instances.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / fathima2407
overloading-> it is the process of making an operator or
any other function to exhibit different behaviour in
different instances.
overridding->it is the process of calling the particular
function which is used in the program in different
instances.
Is This Answer Correct ? | 0 Yes | 0 No |
#include<stdio.h> int fn(int v); main() { printf("%d\n",fn(7)); } int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; }
Is printf(?%d?,p); valid?
how many gallon in one quseka
A rectangular plank (2)1/2 meters wide can be placed so that it is on either side of the diagonal of a square shown below.(Figure is not available) What is the area of the plank?
7)8 mark X Y Z X Y Z + A B - A B -------- --------- C D E F B G A find X,Y,Z,G (8marks)
multithreading??
How Main()is called by opreting system?
Explain how a TP Monitor manages memory and processor resources more effectively than a typical operating system.
what are the examples of E-Based Applications?
pls explain this prog logic
What is the key element of Defect Report and Test case format?
why dijkstra algorithm not used for negative weighted edges graph??