Q1:Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
Ans:inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request
is received (usually a file with .aspx extension), the ISAPI filter aspnet_isapi.dll takes care of it by passing the request tothe actual worker process aspnet_wp.exe.
Q2:What’s the difference between Response.Write() andResponse.Output.Write()?
Ans:Response.Output.Write() [...]
Posts Tagged ‘.net interview’
ASP.NET Interview Questions And Answers
Posted in .Net Articles, ASP.Net, tagged .net faq, .net interview, asp.net faq, asp.net interview questions on August 7, 2008 | 2 Comments »
C# Interview Questions And Answers
Posted in .Net Articles, C#, tagged .net faq, .net interview, C# faq, c# interview, C# interview questions and answeres on August 6, 2008 | 1 Comment »
General
Q1:Does C# support multiple-inheritance?
Ans:No.
Q2:Whom is a protected class-level variable available to?
Ans:It is available to any sub-class (a class inheriting this class).
Q3:Are private class-level variables inherited?
Ans:Yes, but they are not accessible. Although they are not visible or accessible via the class interface, they are inherited.
Q4:Describe the accessibility modifier “protected internal”.
Ans:It is available to classes that are [...]