The moose likes Jobs Discussion and the fly likes Interview Question Book Java/J2EE Job Interview Companion Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Careers » Jobs Discussion
Reply Bookmark "Interview Question Book Java/J2EE Job Interview Companion" Watch "Interview Question Book Java/J2EE Job Interview Companion" New topic
Author

Interview Question Book Java/J2EE Job Interview Companion

Mohit Mehta
Greenhorn

Joined: Jan 24, 2005
Posts: 25
Hi

I had chance to read review coppy of "Java/J2EE Job Interview Companion" by
Arulkumaran Kumaraswamipillai & Sivayini Arulkumaran.

I am not sure which edition it was. does current edition has question Categorized based on its level?

Does this book give insight about following topics:
1 How Serialization works? Serialization behaviour in Inheritance
2 How HashMap or any other Collection Classes internally works?
3 Is it addressing about Spring 2.3, Struts 2.0 or related basic questions?
4 Most commonaly asked question comparision betn Spring MVC and Struts
is it addressed in this book?

As I mentioned before I got chance read few question and ans of this book in review copy, It was very much Precise and easy to understand, explanation given in book gives confidence in interview.
If person manage to give answer as given in book, he can easily bag new job.

Hope to get this book in Pune book stores.
As previous edition was not available in book stores
[ February 25, 2008: Message edited by: Mohit Mehta ]

Regards,<br />BulletProof Monk.<br /> <br />"Nthing the Mind of man can Conceive<br />and Believe,It can achieve"
Ramakrishna Yannam
Greenhorn

Joined: Oct 11, 2005
Posts: 1
What does the book talk about ?

Is it just job related Q&A or does it cover any topics briefly ?

Thanks,
Rama
Mohit Mehta
Greenhorn

Joined: Jan 24, 2005
Posts: 25
This book is in form of Q&A.
But Questions are discussed in great detail so if Intervieer ask any twist, you can address that also.
In previous version all question was categorised based on its level say basic, advance etc.
Mohd. Irfan Khan
Greenhorn

Joined: Jul 18, 2007
Posts: 18
Hi,

This books covers topics from core java to j2ee to design patters in the form of Q&A...I have seen earlier version of this book. It covered java/j2ee1.4. So I dont know if it covers 1.5 this time....

How ever, this book helps in brushing up all concepts in a very easy manner in less time and at one place... So you feel confident while facing interview.

Thanks,
Mohd. Irfan Khan


Thanks,<br />Mohd.Irfan Khan<br />SCJP1.4
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
The 400+ Q&A covers Java 1.4 & 1.5. The Java/J2EE and related technologies are very vast and this book tries to cover as many popular questions and answers as possible in a concise manner with diagrams, examples, code snippets, comparisons etc. You can get a free sample download from the following link to see if you like the style, content and brevity of the answers without compromising on the details.

Free sammple --> http://www.lulu.com/items/volume_54/821000/821310/1/preview/978-1-4116-6824-9-preview.pdf


Java Interview Questions and Answers Blog | Amazon.com profile | Java Interview Books
Mohit Mehta
Greenhorn

Joined: Jan 24, 2005
Posts: 25
Hi

Is this book available in India?

Please let me know which publication will work in India?
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
This book is not available in India. It is online available via online stores like Amazon, Lulu, Barnes & Noble etc.
Marko Kencheto
Ranch Hand

Joined: Jan 15, 2008
Posts: 33
Hi,

why some books from India are not available in Europe and other countries (can be selled only in India)?
The question conserns perhaps other category.

Thanks!
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
This book is published via Lulu.com on demand publication and the authors are based in Australia. Happy to consider indian edition if any publishers are interested. I am quite happy with on demand publication and it is working for me. I also learned a bit of marketing side of things like Google Adwords, Adsense etc.
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
Indian edition is now available. The publisher is

Goels Computer Hut - Pune
Tel-020-24451958, email: compuhut@pn2.vsnl.net.in
Karl Krasnowsky
Ranch Hand

Joined: Jan 16, 2009
Posts: 97
Any plans on an update for EJB2 -> EJB3 ?

Also, a niggly observation concerning Core Java A 46.
I would be hesitant in stating that the JVM will do anything "exactly".
The call to sleep(1000) causes the current thread to sleep for exactly 1 second.


It has been my experience that a given JVM will do whatever seems appropriate given the state of the threads running within the process.


[SCJP 6]
[SCBCD in process]
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
You are right. There are plans, but very busy with my regular job. . Planning to get Basic Java to up to date (atleast Java 6) first and then move on to Enterprise Java including EJB3.
Karl Krasnowsky
Ranch Hand

Joined: Jan 16, 2009
Posts: 97
arulk pillai wrote:You are right. There are plans, but very busy with my regular job. . Planning to get Basic Java to up to date (atleast Java 6) first and then move on to Enterprise Java including EJB3.


And knowing how the timing works on such things, as soon as you update to 6 you'll need an update to 7! At least it keeps you busy. Thanks for your effort on this. It's very useful as is.

~Karl
Karl Krasnowsky
Ranch Hand

Joined: Jan 16, 2009
Posts: 97
Arulk,
Page 166, Instance Pooling states that with Stateful EJBs there will be a dedicated EJB for every client.
So if there are 1000 clients then there will be 1000 instances of beans.

it does go on to say:
So how do we conserve memory. This is done through activation and passivisation.

but it doesn't explain exactly how conservation of memory is achieved. It still implies that there is a 1x1 client to bean relationship if stateful.
And this is repeated later in this section.
While the session state of the client requires persistence across multiple calls, stateful ejbs are pooled by the use of session data passivation/activation when limit of available EJBs is surpassed. i.e., it is possible to serve 1000 clients with any number of instances of stateful EJBs, be it 1 (okay, this would have horrible performance) to 1000. Is this not true?

~Karl
arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Posts: 2885
The server will use activation/passivation behind the scene. The instances that have not been accessed for a while are good candidates for passivation. The actual implementation and strategies used can vary from container implementation to implementation. In general, maintaining a state in HttpSession is preferrable to Stateful SessionBeans. I am only talking about EJB 2.x. Not sure about EJB 3.x.
Vid Srini
Ranch Hand

Joined: Aug 17, 2006
Posts: 35
Is this book available in Bangalore. Kindly let me know.

Thanks,
Vidhya
 
 
subject: Interview Question Book Java/J2EE Job Interview Companion
 
Threads others viewed
J2EE Contract Jobs in London
* Welcome Arulkumaran Kumaraswamipillai & Sivayini Arulkumaran
Need help badly-please everyone help me
Book available in India?
Java/J2EE jobs in Australia
WebSphere development made easy
without the weight of IBM tools
http://www.myeclipseide.com