What are your future aspirations?
Net Interview Questions
8,170 net interview questions shared by candidates
What books have you read? What web-sites, forums have you use to solve problems?
What is your salary expectation?
How many years of experience do you have?
What is the difference between SingleorDefault and FirstorDefault in C#?
what you will do to improve the performance of an application?
What is WCF and how it is different from normal web service
Explain in details Dependency Injection
class Program { static void Main(string[] args) { B obj = new B(); Console.ReadKey(); } } abstract class A { public A() { Console.WriteLine("This is the A class"); //calc(); } public abstract void calc(); } class B : A { public B() { Console.WriteLine("This is the B class"); } public override void calc() { Console.WriteLine("This is the abstract methode"); } } Questions: 1. What will be printed on the console? 2. what will be printed to the console if we remove this "//" before the calc() in the contractor of class A;
¿Que es un patrón de diseño? y da un ejemplo en dónde utilizaras un patrón de diseño.
Viewing 1291 - 1300 interview questions