Placement papers on ASP.NET - Set 5
1. Which of the following is the default authentication mode for IIS?
Anonymous
Windows
Basic Authentication
None
View Answer / Hide Answer2. When does Garbage collector run?
When application is running low of memory
It runs random
When application is running for more than 15 minutes
None of the above
View Answer / Hide AnswerANSWER: When application is running low of memory
3. Which of the following is the way to monitor the web application?
MMC Event viewers
Performance logs
Alerts Snap-ins
ALL
View Answer / Hide Answer 4. ___________ allows executing ASP.NET application level events and setting application-level variables.
Application object
Global.asax file
Impersonation
Web.config file
View Answer / Hide Answer 5. __________________ file apply settings to all ASP.NET applications
web.config
machine.config
global.asax file
application object
View Answer / Hide Answer 6. In case of _______________, there is a round trip and hence puts a load on server.
response.redirect
server.transfer
View Answer / Hide AnswerANSWER: response.redirect
7. Which one of the following has a parameter called as “preserveForm”?
Server.transfer
Response.redirect
View Answer / Hide Answer 8. Where do we store connection string in ASP.NET?
Web.config
App.config
Machine.config
Global.asax
View Answer / Hide Answer 9. Which type of caching is good if the website is fairly static?
Page Fragment caching
Page output caching
View Answer / Hide AnswerANSWER: Page output caching
10. From which class global.asax file derived?
HTTP Application class
HTTP SessionState class
View Answer / Hide AnswerANSWER: HTTP Application class