what is meant inheritance. can you exaplain what kind
inhertance ussed in your project



what is meant inheritance. can you exaplain what kind inhertance ussed in your project..

Answer / amrish

Acquiring properties from parent class to child class.
in every form that we create inherits from predefined parent form.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does the initial catalog parameter define in the connection string?

0 Answers  


What is difference between Method and function

3 Answers  


How Global.asax is used ?

0 Answers   Siebel,


localization using windows c#

2 Answers  


What is a property in c#?

0 Answers  






Can we inherit an interface in an abstract class?

6 Answers   HCL,


Is c# good for games?

0 Answers  


What?s the advantage of using System.Text.StringBuilder over System.String?

1 Answers  


Explain the difference between Response.Write () and Response.Output.Write ().

0 Answers   Atos Origin,


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


How to raise an selection changed event associated with listbox in datagridview control with a sample example?Here the listbox is a child control associated with datagridview control.

3 Answers  


Can you put two constructor with the same structure in a class?

0 Answers  


Categories