Explain how garbage collection works?
Explain about .net?
What is operator overloading in .net?
What is Method Overriding? How to override a function in C#?
What is the difference between constants and read-only variables?
Tell us what is a variable of implicit type and what is its scope?
Do you know what are three common acronyms used in .net, and what do they stand for?
Value type & data types difference. Example from .NET.
What is Application Domain?
In Mvc Architecure what is view?
How can you see which services are running on a Windows box?
Explain what rare the types of jit and what is econo-jit?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12