Question From Microsoft Assessment

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

You are troubleshooting a deployed Web application and
need to change the <trace> element to enable tracing on
the page. You modify the Web.config file for the
application. Which statements correctly describe when the
change will be applied and its impact on current users?
(Select all that apply.)

A)State data stored in the Session object will be lost.
B)The Web application will be restarted and the
configuration file will be read immediately.
C)Current users will be given a five-minute warning before
the Web application is restarted.
D)Current users will be immediately disconnected from the
application.
E)State data stored in the Application object will be
maintained.


I need Correct Answer...
Please help
Tom
 
You are building an application that will be deployed on a
Web farm. You are analyzing the techniques available for
optimizing the application and persisting data across
requests. Which application features can be scaled to a
Web farm? (Select all that apply.)

A) Session state
B) View state
C) Application state
D) Page output caching

Need answers
Thanks in advance
Tom
 
B is the best answer, but this is a lousy question. A can also happen,
depending on session state architecture. If its inproc, then its lost in the
restart. But regardless of that, the right answer is A.

D is not correct - they wont be disconnected.
E is not correct (see reasons for A)
 
Back
Top