| Author |
marcus green: Mock test
|
Marut pandey
Ranch Hand
Joined: Mar 10, 2008
Posts: 43
|
|
Given a valid deployment descriptor (WEB.XML) containing the following code
<context-param>
<param-name>bestwebsite</param-name>
<param-value>www.examulator.com</param-value>
</context-param>
<servlet>
<servlet-name>GetInitParameter</servlet-name>
<servlet-class>com.examulator.GetInitParameter</servlet-class>
<init-param>
<param-name>bestwebsite</param-name>
<param-value>www.javaranch.com</param-value>
</init-param>
</servlet>
And given that cfg is a valid ServletConfig object and ctx is a valid ServletContext object which of the following statements are true?
Choose at least one answer.
A. cfg.getInitParameter("bestwebsite") will return www.examulator.com
B. ctx.getInitParameter("bestwebsite") will return www.javaranch.com
C. ctx.getInitParameter("bestwebsite") will return www.examulator.com
D. cfg.getServletContext().getInitParameter("bestwebsite"); will cause a compile time error
E. ctx.getServletConfig().getInitParameter("bestwebsite"); will cause a compile time error
Answer is C only . I guess E option is also correct.
|
 |
Milton Ochoa
Ranch Hand
Joined: Oct 23, 2007
Posts: 336
|
|
Hi, the best you can do, is test that on a webapp of example.
I think you all right, because the interface ServletContext, dont have the method, getServletConfig(), and getting a servlet config from a ServletContext, dont have any sence.
|
 |
ani jadhao
Ranch Hand
Joined: Dec 23, 2008
Posts: 62
|
|
Best option I would suggest you to try by yourself on any intelligent java/j2ee editor. Try oberving methods of servletcontext. And also think , would it make sense to have a getservletconfig method in servlet context.?
the given answer in question is correct.
|
SCJP 1.4 : 91%
SCWCD 5: 96%
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Milton is right: ServletContext has no such method. E is the only answer that wouldn't even compile.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: marcus green: Mock test
|
|
|