Satish Saravanan

Ranch Hand
+ Follow
since Jun 30, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Satish Saravanan

Proud of you Satya Maheshwari .

A PASS IS A PASS what every one would say if you miss by 1%.
But i too felt what it is when i missed by 2%(88).
Any way celebrate it

Thanks
satish
Hai I am also with you

Let this New Year bring many surprises to us

Thanks
satish :roll:
Best wishes for both of you.

Hope to see in the 90+ in the exam for your HARD WORK

Thanks
satish
To Neetika Sood
I have sent it to your mail.
Hopes it helps you.
Best wishes for your exam.
Thanks
satish
To Pawan preet
The Mock is available at the end of the book in the Appendix section.

To Neetika Sood
They are available Here.If you are not able to get it.Let me know.I will mail it to you.

Thanks
satish
To Pawan preet
The Mock is available at the end of the book in the Appendix section.

To Neetika Sood
They are available Here.If you are not able to get it.Let me know.I will mail it to you.

Thanks
satish
To Mikalai Zaikin
Thanks Mikalai Zaikin your notes are very usefull and a must read before the exam.
Thanks
satish
Congrats

Proud of you ya

Thanks
satish
To Anitha Srinivasan & Sayak Banerjee

Had sent to you.
I hope it help's you.
All the best for the exam
To Anitha Srinivasan
Do not get scared of [B]DRAG&DROP[B] in fact i felt they are easy than the
remainig questions.They will be like place the life cycle of servlet,jsp in order of there execution,what are the API of the given implict objects.

Try to place in the correct place that is it.While draging the answer,try to leave the pointer exactly at the center of the box where you have to.

Thanks
satish
Hello Rancher�s I had passed the exam with 88% (61 of 69) yesterday.

Thanks to
Firstly I would like to thank Bryan Basham, Kathy Sierra & Bert Bates for sharing there wealth to us.
For Mikalai Zaikin,Frederic Esnault,Cheenu Dev,Kalaivanan Darairaj for there notes.
For Satou kurinosuke ,John Meyer and all the JavaRancher�s for there continuing support.
Have a look at how I had prepared for the exam


Thanks
satish.
18 years ago
To Anitha Srinivasan
I too had visited the site it is not working.
If you want the pdf of his notes drop your id hover here.
I will send it for you.
Have a look at how I had prepared for the exam
Thanks
satish
To Bert
I really waited for this.I am really happy.No word to say.
I want to give details of how I prepared because IT IS FROM HERE I HAD TAKEN ie Knowledge

To Siddharth Purandare
While atending the drag and drop questions you have to drop the answer accordingly and then click the DONE button.If you revisit the question,it says that if you do so the answered attended previously will be lost.
so it is advisable to mark the answer carefully at the first attempt or mark it in the pad(material given by your center).It will be very usefull while revisiting.

Thanks for your replies
satish
Hello Rancher�s I had passed the exam with 88% (61 of 69) yesterday.

Thanks to
Firstly I would like to thank Bryan Basham, Kathy Sierra & Bert Bates for sharing there wealth to us.
For Mikalai Zaikin,Frederic Esnault,Cheenu Dev,Kalaivanan Darairaj for there notes.
For Satou kurinosuke ,John Meyer and all the JavaRancher�s for there continuing support.

About the Preparation
I had little knowledge of servlets and jsp before starting for preparation of the exam.
It had taken me roughly 2 months of preparation.The last week being for mocks.
The mocks that I had used are Jirish(free) &Jwebplus(commercial).
I had referred to the spec quite often when I had not understood some concepts.

About the Exam
Ha the exam contains 70 questions(not as 69) and evenly asked in all the topics.

The Section Analysis is as follows
The servlet Thechnology Model 100%
The structure and Deployment of web applications 87%(Lost 1Question)
The web container model 85%(Lost 1Question)
Session Management 71%(Lost 2Question)
Web Application Security 83%(Lost 1Question)
The JSP Technology Model 100%
EL 100%
Standard Actions 75%(Lost 1Question)
Tag Libraries 87%(Lost 1Question)
Custom Tag Library 100%
J2EE Patterns 83%(Lost 1Question)

I felt Session ,custom tag and standard actions to be little tough.

Refer to the Dynamic attributes tutorial of BrainBasham,like what should the Tag handler class implement and how it should be configured in the TLD. I had got 2 questions like that.
The patters is quite easy. Head first is sufficient. But do remember about the characteristics of each
Pattern carefully. I had lost in that.
The remaining are quite similar to Head First.

The Mistakes that I had done
I had taken the final mock exam from the book the evening before taking the exam.so there was no time
to go thorough were I was quite weak.

In the exam I did not mark the drag&drop answers in pad .when I revisited them they are gone.so doing the same
Questions again.I had got 8 questions.

About Final mock exam in the Head First.
Take the exam atleast by a day before taking the exam.It would be very usefull for you to go through the mistakes.I had got 66% in it.
First take the exam as said .Then without looking at the answers take some ones help to tell you how many answers are correct for each questions and retry to answer the question.I had got 83% in that. It will be the close to what you will be getting in the exam.I had got 88%(+5 more).

For those who are about to prepare for the Exam.
Head First is the wright choice.I had nearly wasted a lot of time in searching for a good book.
A commercial mock is an optional.But it had helped me.
First it will take a lot of time to start.Butdon�t loose hope.I personally wasted(usefull)a lot of time in first 5 to 6 chapters.I am not used to Head first style.But now I fell it is the best way around to learn.
Use JavaRanch regularly.

For those who are taking for the Exam.
The exam is quite easy,more or less the way in the final mock except that it shows how many answers are correct.
And all the Best to you.

Thanks
satish saravanan.G
In page 360,

Given
<jsp:useBean id="person" type="foo.Person" class="foo.Employee">
<jsp:setProperty name="person" property="*"/>
</jsp:useBean>

In foo.Person we have "name" property & in foo.Employee we have "empID" property.

The request parameter names in the html are "name" and "empID".

The JSP handwriteen say's that
"I want you to iterate through the request parameters, and find any that matches this bean's
property names and set the value of the matching properties equal to the value of the corresponding request paramaeter."

My understanding of the above is that both the properties of the bean (name and empID)will be set.

Is it wright.
But in page 414 BULLET POINTS it says that
"If you specify a 'type'attribute in <jsp:useBean>,you can set properties in <jsp:setProperty> ONLY on properties of the 'type' ,but NOT on properties that exist only in the actual 'class' type."


since the type of <jsp:useBean> is foo.Person and since it contains only name property.
ONLY it will be set.empID will not be set.

Is it Wright.

PLEASE explain me.
satish