• 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

cleared WCD - 73%

 
Ranch Hand
Posts: 1277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all..

wait guys...the exam that i cleared is the first mock from enthuware
this is the first mock that i appeared for in the preparation..
i am analysing where i went wrong....will let you know about my 'surprises' in the first mock
 
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
So when are you giving your final exam?? Also which simulator to buy?? Whizlabs or enthuware?? Which one is closer to the real exam?? Any idea?
 
Niranjan Deshpande
Ranch Hand
Posts: 1277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well well well... enthuware and whizlabs are more than enough.
you can get whizlabs for only 500 Rs
and enthuware for about 35$

both are worth buy !
 
Niranjan Deshpande
Ranch Hand
Posts: 1277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
some comments from my mock 1 -

Take all the mocks with the test taking strategy that K&B have givein in
the scjp1.4 book ! this really helps you keep your cool and still go through the exam.. ! comfortably !

-is this correct ? - if multiple filters are associated with the same resource, they are executed in the
order in they are defined

-this was a surprise..i mean its not explicitly pointed out in HFSJ : only <c:when> has a "test" attribute
c<c:choose> and <c therwise> dont have any such attribute

-this was again a surprise - the <taglib> does have a attribute called "id"

-i am not sure on this
<env-entry>
<env-entry-name>flag<env-entry-name>
<env-entry-type>jaa.lang.Boolean</env-entry-type>
<env-entry-value>true</env-entry-value>
</env-entry>

is it fine if we use TRUE ...as this was the other option in the list. got confused
a bit..and selected TRUE ;-) and went wrong...the answer is 'true' . but here is what the jdk specs say -

the constructor : Boolean(String s)
Allocates a Boolean object representing the value true if the string argument is not null and is equal,
ignoring case, to the string "true".

-your webapp has one servlet for each use case. the service methods have grown too big and these servelts
have become difficult to maintiain. Also there is lots of code repeated accross each servlet.
Which design pattern will you use ?
I said - Front Controller and MVC ( since the question is more related to the PRESENTATION tier )
but the exam engine says - Business Delegate,Front Controller

Please help me with this.

I wnt wrong on 18 questions. but i can type in all those mistakes here.

thanks
 
Ranch Hand
Posts: 292
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I used Enthuware and I found it more than sufficient.
It costs Rs. 550.00 if you're an Indian Customer
Please check HERE
 
Joe San
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
Thanks Sayak.
 
Niranjan Deshpande
Ranch Hand
Posts: 1277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
any one please help me with my queries
 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

-is this correct ? - if multiple filters are associated with the same resource, they are executed in the
order in they are defined



Regarding the ordering of the filters, the order of the filters with matching <url-pattern> will be at the top and then the filters matching with <servlet-name> tag.
 
reply
    Bookmark Topic Watch Topic
  • New Topic