• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

It's party time............Cleared with 100%

 
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Ranchers,

I cleared SCBCD today with 100%

I would like to thank everyone in this forum who have helped me to get my EJB concepts straight.

My preparation methodology :

On & Off for last 2 months and vigorous for last 2 weeks (3 hrs daily & atleast 8 hours in weekends)

Followed HFEJB. Excellent book. And also did not forget to refer to EJB specification whenever there is a indication/link/page no in HFEJB. (Especially all mock questions after each chapter which contains the page no of supporting page in EJB spec.)

Valentine's cheat sheet was also very helpful in remembering the "bean things".

Last but not least, this forum always rocks!!!

Micheal
 
Ranch Hand
Posts: 372
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats Micheal, that's an awesome feat
 
Bartender
Posts: 3958
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratz, Micheal !!!
 
Ranch Hand
Posts: 1936
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats
 
Micheal Jacob
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sathish,Mikalai,Kengkaj

Thanks for your wishes.

Micheal.
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Contrats !!!
Now can you please reply to the following ....
I had posted the query a few day back and no one is replying....
I don't know whether its a silly question or a difficult one..


Think of the Movie and Trailer example.
Think of it as an one to one bidirectional relationship.
There is a movie M1 and a trailer T1.
M1.getTrailer() will give T1 and T1.getMovie() will give M1.
Now suppose I do something like the following....
M1.setTrailer(null);
After the execution of this statment will T1.getMovie() return null or is it still going to return M1?
[ January 26, 2006: Message edited by: Sagar Kar ]
 
Micheal Jacob
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Thanks for your wishes.

I think, until you assign the T1.setMovie() to some other movie,
T1.getMovie() will return M1.

Micheal.
 
reply
    Bookmark Topic Watch Topic
  • New Topic