Feeds:
Posts
Comments

Posts Tagged ‘.net interview’

                                 
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() [...]

Read Full Post »

                             
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 [...]

Read Full Post »