Asked via the recruiter whether I would accept being paid a month in arrears, so first payment after month 2.
Net Developer Interview Questions
7,079 net developer interview questions shared by candidates
What are your future aspirations?
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 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 1081 - 1090 interview questions