• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Mock Questions

 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.which two require declaring multiple servlet definitions for the same servlet class in deployment descriptor (choose two.)
A.implementing servlet chaining
B.giving each servelet definition a different name
C.allowing the servler class to handle requests from different URLs
D.allowing each definition to have different initialization parameter

2.which is a requirement of a distributable Web application?
A.it must not call the sendRedirect method.
B.it must not rely on VRL-rewriting for session tracking.
C.it must not rely on any notificatin when a session is activated or passivated.
D.it must not rely on the propagation of events caused by the manipulation of session attributes.
 
arch rival
Posts: 2813
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you think the answers are and what do you think a VRL is?
 
Grace Yang
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.which two require declaring multiple servlet definitions for the same servlet class in deployment descriptor (choose two.)
A.implementing servlet chaining
B.giving each servelet definition a different name
C.allowing the servler class to handle requests from different URLs
D.allowing each definition to have different initialization parameter

I think the answer is : B D

2.which is a requirement of a distributable Web application?
A.it must not call the sendRedirect method.
B.it must not rely on URL-rewriting for session tracking.
C.it must not rely on any notificatin when a session is activated or passivated.
D.it must not rely on the propagation of events caused by the manipulation of session attributes.

I think is B

Anybody knows?
Thanks
 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure about the second question. But B and D are correct for the first one.
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Agree, B & D for the first question. Not much idea about the second one though

Regards,
Joshua
 
Ranch Hand
Posts: 893
Tomcat Server Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't know either for sure but maybe the following link may help

Distributing Load
 
reply
    Bookmark Topic Watch Topic
  • New Topic