Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write the Syntax for Function or Method Overriding?

Answers were Sorted based on User's Feedback



write the Syntax for Function or Method Overriding?..

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

write the Syntax for Function or Method Overriding?..

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

write the Syntax for Function or Method Overriding?..

Answer / karthika

retrun type(int , int)
{
statement1;
}

Is This Answer Correct ?    0 Yes 8 No

write the Syntax for Function or Method Overriding?..

Answer / nageswari

void function name(aruments)
{
statements
return()
}

Is This Answer Correct ?    0 Yes 8 No

write the Syntax for Function or Method Overriding?..

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

Post New Answer

More C Sharp Interview Questions

i am using windows authentication for c#.net remoting with iis.I uncheck the anonymous access option in directory security.when my client requests the server it returns 401:unauthorized error.How can I resolve the exception ? Please send me the reply as early as possible.

1 Answers  


What happens in synchronisation?

2 Answers   Tech Mahindra,


What is serialization in c#?

0 Answers  


What is a dll in c#?

0 Answers  


WHICH IS THE BEST BOOK FOR A BEGINNER TO LEARN AP.NET 3.5, C#.NET & ALL THE FEATURES OF VISUAL STUDIO2008? WHAT ARE THE CERTIFICATIONS IN THIS FIELD? WHICH IS BEST BOOK FOR CLAERING CERTIFICATION EXAM? PLZ HELP ME YAAR

1 Answers  


Is c# the same as d flat?

0 Answers  


What is a must for multitasking

0 Answers   InterGraph,


How to get the sum of last 3 items in a list using lambda expressions?

0 Answers  


Which is faster array or arraylist in c#?

0 Answers  


What is static classes in c#?

0 Answers  


How can I make sure my c# classes will interoperate with other .net languages?

0 Answers  


What is ispostback c#?

0 Answers  


Categories