Explain in details Dependency Injection
Software Developer Net Interview Questions
8,171 software developer net interview questions shared by candidates
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.
OOPs concepts
and basics concept of dotnet the flow and statemanagement tech questions
SQL query on joins, n'th salary query. .net core questions
What is delegate, multicast delegate, relationship between event and delegate, SRP principal, DIP principal How to invoke action using different name in mvc action? Can we declare private method in controller? What is the use of declaring private method in controller? What are the action filters in MVC?
MVC architecture and bacic C# and entity framework questions
Difference between entity framework in Code First approach and Database first approach which i was very happy to discuss as i faced this similar kind of architecture issues in my organisation.
Implement Fibonacci series with and without loop.
Viewing 1291 - 1300 interview questions