write the Syntax for Function or Method Overriding?
Answers were Sorted based on User's Feedback
Answer / ashish gupta
class base
{
public virtual func()
{
}
}
class derive:base
{
//override the base funcion..signature n return value
// must be same
public override func()
{
}
}
Is This Answer Correct ? | 19 Yes | 3 No |
Answer / pritam kumar
class parent
{
public virtual void print()
{
Console.Writeline ("method from parent class");
}
}
class child:parent
{
public override void print()
{
Console.Writeline("method from base class ");
}
}
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nageswari
void function name(aruments)
{
statements
return()
}
Is This Answer Correct ? | 0 Yes | 8 No |
Answer / madhu nagidi
//Below is syntax for function
function test_func()
{
}
//Below is syntax for Method Overriding
Class JJ
{
Test_method(string a, string b)
{
a="Google";
}
}
class MM : JJ
{
Test_method(string a, string b)
{
a = "Micorsoft";
}
}
//Here overriding the functionality of the method which is
in Base Class.
Is This Answer Correct ? | 1 Yes | 11 No |
Explain the process of Serialization?
How main method is called in c#?
What is arraylist c#?
What is use of private class in c#?
Explain the term inheritance in C#.
0 Answers Deloitte, JPMorgan Chase,
What is xml serializer?
What is the default value of guid in c#?
What is the xml document structure?
What are the fundamental differences between value types and reference types?
Explain About sn.exe
What is the advantage of extension method in c#?
What is mvc firstordefault?