A Comprehensive Resource for Microsoft Technologies

Welcome, your go-to destination for everything related to .NET and Microsoft technologies. With over 10 years of experience in the IT industry, I am excited to share my knowledge and insights on this platform. This blog is dedicated to providing valuable information, tips, and tutorials that are not only relevant to the rapidly evolving IT industry but also essential for individuals working on real-time projects and preparing for interviews
Wolters Kluwers(23 Jan2020)
1.   What is OOPS
2.   What is solid principle, explain everything with example
3.   What is dependency injection
4.   What are other ways than constrictor level dependency injection
5.   Difference Var and let keyword
For(int I =0; i< 5 ; i++){
Console.log(i);  => 1 to 4
}
Console.log(i);=> 5
6.   IQueryable and IEnumerator diff
Var k ={1,2,3,4};
Var j = k.Where(x=> x > 3);
k.add(5);
k.add(6);
what will be value of K => 4,5,6

why need to write ToList();

7.    Is JavaScript asynchronous or single line programming language
8.   What are filters
9.   Which filter are you using in project
10.                     How authentication filter works