What is parsing?
What is the keyword used to prevent a class from being inherited by another class?
What are the types of inheritance in c#?
Example of value type and refarnce type
Explain about WSDL
Explain the types of comments in c#?
What is a delegate how is it type safe?
How do I run managed code in a process?
What is Interface and Abstraction (in real time scenario)
Explain About DTS package
Is c# used for any core features of windows vista?
What Is An Interface Class?
Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide virtual SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }