Search the web
Sign In
New User? Sign Up
javacertstudy · Java Certification Study Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 81494   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: "OP Verma" <opverma@...>
Date: Wed Mar 1, 2000 5:52 am
Subject: [javacert] Developer Exam
opverma@...
Send Email Send Email
 
I would like to know from the people who have passed the Developer Exam
how difficult and how much time-consuming did they find the whole
process.And what advantages they are deriving from the qualification.

#29 From: "VIKAS GARG" <vikgarg@...>
Date: Tue Feb 29, 2000 6:45 pm
Subject: [javacert] THREADS
vikgarg@...
Send Email Send Email
 
Could you please explain threads in detail?

#28 From: "sivateam" <thegreatsiva_2000@...>
Date: Mon Feb 28, 2000 6:26 pm
Subject: [javacert] Re: Sun Java Architect Security awareness sample questions
thegreatsiva_2000@...
Send Email Send Email
 
"chris west" <chris-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=11
> "sivateam" <thegreatsiva_200-@...> wrote:
> original article:http://www.egroups.com/group/javacertstudy/?start=10
> > Our study group has posted some 50 sample questions related to java
> > security awareness. If you want to refer please look at
> >
> > www.mathus.homepage.com
> >
> > sivateam
> >
>
> I tried the "Java Architect" link.  Got "There is an error with your
> selection."  Just letting you know ...
>

NOw it is resolved
> Chris
>

#27 From: "OP Verma" <opverma@...>
Date: Mon Feb 28, 2000 10:01 am
Subject: [javacert] Java Developer Exam
opverma@...
Send Email Send Email
 
I have a confusion about how to write the client side which is able to
run both in the networked and in the non-networked mode. Also how to
implement database level locking.Can somebody provide any suggestions.

Regards,
OP Verma

#26 From: "Frank Z.F Xie" <frank.xie@...>
Date: Mon Feb 28, 2000 8:30 am
Subject: [javacert] Re: Strings confused!!!!please help me!!!!!
frank.xie@...
Send Email Send Email
 
Hi, Hua Cao & Chris

I think your Java version are different. For Java 1.1.6 the result is "Not
Equal", for Java 1.2 the result is "Equal". You may find some hints in the
"What's new" from Java 1.2 release.

Frank Xie

----- Original Message -----
From: "Christer Loefving" <chlof@...>
To: <javacertstudy@eGroups.com>
Sent: Monday, February 28, 2000 3:43 PM
Subject: [javacert] Re: Strings confused!!!!please help me!!!!!


> Hi,
>
> I tested too and got "EQUAL". That's because the result of
> s1.toLowerCase()
> "abcs" already exists in the String Pool. Thus they point to the same
> object.
>
> /Christer
>
> hua cao" <sm12r-@...> wrote:
> original article:http://www.egroups.com/group/javacertstudy/?start=21
> > Hi,
> >
> > After the following code is executed
> >
> > s += "morning";
> >
> > s now refers to a NEW object. You are correct that "good" is
> > not referred to by s any more.
> >
> > Regarding String class, I would like to add a new discovery here.
> >
> > Dylan Walsh (dylanwalsh@...) claims in his "Sun Certified
> > Programmer Examination Revision Book" that for the following code
> >
> > String s1 = "abcd"; // all in lowercase
> > String s2 = s1.toLowerCase();
> >
> > if ( s1 == s2)
> > System.out.println("EQUAL");
> > else System.out.println("NOT EQUAL");
> >
> >
> > would print out "EQUAL". However, I did a test and the
> > result is "NOT EQUAL".
> >
> > Any idea?
> >
> > Hua
> >
> >
> >
> >
> >
> >
> >
> > >From: "sree" <ssarma@...>
> > >Reply-To: javacertstudy@eGroups.com
> > >To: javacertstudy@eGroups.com
> > >Subject: [javacert] Strings confused!!!!please help me!!!!!
> > >Date: Thu, 24 Feb 2000 10:19:57 -0800
> > >
> > >Hi,
> > >
> > >                 The more i study about strings the more i get
> > >confused.There were lot of
> > >                 discussions about strings earlier in this forum but
> > >still i am bewildered. I
> > >                 know that strings are immutable if that's the deal
> in
> > >the following case.
> > >
> > >                 String s = "good"
> > >                 s+= "morning" file://isn't this wrong??? but it
compiles
> > >well and prints
> > >                 goodmorning.
> > >
> > >                 Haven't i changed the original contents of the
> string
> > >s.One more thing if it
> > >                 creates a new object by appending "morning" to
> "good"
> > >does that mean
> > >                 "good" is eligible for garbage collection now. How
> can
> > >i check for the
> > >                 immutability of the strings.
> > >
> > >                 A deep explanation would be very helpfull.
> > >
> > >                 Thank you very much.
> > >
> > >
> > >--------------------------------------------------------------------
> ----
> > >To Post a message, send it to:   javacertstudy@eGroups.com
> > >To Unsubscribe, send a blank message to:
> > >javacertstudy-unsubscribe@eGroups.com
> > >
>
>
> ------------------------------------------------------------------------
> To Post a message, send it to:   javacertstudy@eGroups.com
> To Unsubscribe, send a blank message to:
javacertstudy-unsubscribe@eGroups.com
>
> ------------------------------------------------------------------------
> Start your own free email group on eGroups.
> http://click.egroups.com/1/1884/0/_/403936/_/951723820/
>
> eGroups.com Home: http://www.egroups.com/group/javacertstudy/
> http://www.egroups.com - Simplifying group communications
>
>

#25 From: "Christer Loefving" <chlof@...>
Date: Mon Feb 28, 2000 7:43 am
Subject: [javacert] Re: Strings confused!!!!please help me!!!!!
chlof@...
Send Email Send Email
 
Hi,

I tested too and got "EQUAL". That's because the result of
s1.toLowerCase()
"abcs" already exists in the String Pool. Thus they point to the same
object.

/Christer

hua cao" <sm12r-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=21
> Hi,
>
> After the following code is executed
>
> s += "morning";
>
> s now refers to a NEW object. You are correct that "good" is
> not referred to by s any more.
>
> Regarding String class, I would like to add a new discovery here.
>
> Dylan Walsh (dylanwalsh@...) claims in his "Sun Certified
> Programmer Examination Revision Book" that for the following code
>
> String s1 = "abcd"; // all in lowercase
> String s2 = s1.toLowerCase();
>
> if ( s1 == s2)
> System.out.println("EQUAL");
> else System.out.println("NOT EQUAL");
>
>
> would print out "EQUAL". However, I did a test and the
> result is "NOT EQUAL".
>
> Any idea?
>
> Hua
>
>
>
>
>
>
>
> >From: "sree" <ssarma@...>
> >Reply-To: javacertstudy@eGroups.com
> >To: javacertstudy@eGroups.com
> >Subject: [javacert] Strings confused!!!!please help me!!!!!
> >Date: Thu, 24 Feb 2000 10:19:57 -0800
> >
> >Hi,
> >
> >                 The more i study about strings the more i get
> >confused.There were lot of
> >                 discussions about strings earlier in this forum but
> >still i am bewildered. I
> >                 know that strings are immutable if that's the deal
in
> >the following case.
> >
> >                 String s = "good"
> >                 s+= "morning" //isn't this wrong??? but it compiles
> >well and prints
> >                 goodmorning.
> >
> >                 Haven't i changed the original contents of the
string
> >s.One more thing if it
> >                 creates a new object by appending "morning" to
"good"
> >does that mean
> >                 "good" is eligible for garbage collection now. How
can
> >i check for the
> >                 immutability of the strings.
> >
> >                 A deep explanation would be very helpfull.
> >
> >                 Thank you very much.
> >
> >
> >--------------------------------------------------------------------
----
> >To Post a message, send it to:   javacertstudy@eGroups.com
> >To Unsubscribe, send a blank message to:
> >javacertstudy-unsubscribe@eGroups.com
> >

#24 From: "Chris West" <chrisw@...>
Date: Sat Feb 26, 2000 3:16 pm
Subject: [javacert] Re: Java Developer Exam
chrisw@...
Send Email Send Email
 
"sandeep pashine" <sanpas-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=20
> I want to know more about java developer exam
>
> Thanks
> Sandeep
>

"The Complete Java 2 Certification Study Guide" (Roberts/Heller/Ernest)
has several chapters regarding this certification.  I found them very
informative.  The least expensive place to buy this book that I know of
is bookpool.com.

This exam revolves around a client/server project which must be
completed by implementing a set of requirements supplied by Sun.  After
the project is completed and submitted, a written exam is then
required.  The book I referenced will help you determine if you have
sufficient experience to pursue this exam, as well as providing
ideas/code/etc that are very useful to know during the process of
designing and coding the project.

If you do decide to purse this certification, it is very important to
spend sufficient time to thoroughly understand the supplied requirement.

Hope this was helpful ...

Chris W.

#23 From: "Sreenivasa \"Msk\" Majji" <sreenivasa.majji@...>
Date: Sat Feb 26, 2000 3:26 am
Subject: [javacert] Re: No Subject
sreenivasa.majji@...
Send Email Send Email
 
have a look on
http://www.geocities.com/SiliconValley/Cable/1025/exam1.html

-Sreenivasa Kumar Majji

----- Original Message -----
From: "mdrafi" <mdrafi555@...>
To: <javacertstudy@eGroups.com>
Sent: Friday, February 25, 2000 17:58
Subject: [javacert] No Subject


| i like  to get some tricky questons from green or any body else.there
| thank in advance for jcp
|
|
| ------------------------------------------------------------------------
| To Post a message, send it to:   javacertstudy@eGroups.com
| To Unsubscribe, send a blank message to: javacertstudy-unsubscribe@eGroups.com
|
| ------------------------------------------------------------------------
| WANT FREE MAGAZINES?
| Sample over 500 magazines in 30 categories-- all for FREE at
| FreeShop.com, your source for thousands of free and trial offers!
| http://click.egroups.com/1/1610/0/_/403936/_/951530306/
|
| -- 20 megs of disk space in your group's Document Vault
| -- http://www.egroups.com/docvault/javacertstudy/?m=1
|
|

#22 From: "mdrafi" <mdrafi555@...>
Date: Sat Feb 26, 2000 1:58 am
Subject: [javacert] No Subject
mdrafi555@...
Send Email Send Email
 
i like  to get some tricky questons from green or any body else.there
thank in advance for jcp

#21 From: "Hua Cao" <sm12rw@...>
Date: Fri Feb 25, 2000 12:33 am
Subject: [javacert] Re: Strings confused!!!!please help me!!!!!
sm12rw@...
Send Email Send Email
 
Hi,

After the following code is executed

s += "morning";

s now refers to a NEW object. You are correct that "good" is
not referred to by s any more.

Regarding String class, I would like to add a new discovery here.

Dylan Walsh (dylanwalsh@...) claims in his "Sun Certified
Programmer Examination Revision Book" that for the following code

String s1 = "abcd"; // all in lowercase
String s2 = s1.toLowerCase();

if ( s1 == s2)
System.out.println("EQUAL");
else System.out.println("NOT EQUAL");


would print out "EQUAL". However, I did a test and the
result is "NOT EQUAL".

Any idea?

Hua







>From: "sree" <ssarma@...>
>Reply-To: javacertstudy@eGroups.com
>To: javacertstudy@eGroups.com
>Subject: [javacert] Strings confused!!!!please help me!!!!!
>Date: Thu, 24 Feb 2000 10:19:57 -0800
>
>Hi,
>
>                 The more i study about strings the more i get
>confused.There were lot of
>                 discussions about strings earlier in this forum but
>still i am bewildered. I
>                 know that strings are immutable if that's the deal in
>the following case.
>
>                 String s = "good"
>                 s+= "morning" //isn't this wrong??? but it compiles
>well and prints
>                 goodmorning.
>
>                 Haven't i changed the original contents of the string
>s.One more thing if it
>                 creates a new object by appending "morning" to "good"
>does that mean
>                 "good" is eligible for garbage collection now. How can
>i check for the
>                 immutability of the strings.
>
>                 A deep explanation would be very helpfull.
>
>                 Thank you very much.
>
>
>------------------------------------------------------------------------
>To Post a message, send it to:   javacertstudy@eGroups.com
>To Unsubscribe, send a blank message to:
>javacertstudy-unsubscribe@eGroups.com
>
>------------------------------------------------------------------------
>eGroups.com Home: http://www.egroups.com/group/javacertstudy/
>http://www.egroups.com - Simplifying group communications
>
>

______________________________________________________

#20 From: "Sandeep Pashine" <sanpash@...>
Date: Fri Feb 25, 2000 1:52 am
Subject: [javacert] Java Developer Exam
sanpash@...
Send Email Send Email
 
I want to know more about java developer exam
 
Thanks
Sandeep

#19 From: "sree" <ssarma@...>
Date: Thu Feb 24, 2000 6:19 pm
Subject: [javacert] Strings confused!!!!please help me!!!!!
ssarma@...
Send Email Send Email
 
Hi,

                 The more i study about strings the more i get
confused.There were lot of
                 discussions about strings earlier in this forum but
still i am bewildered. I
                 know that strings are immutable if that's the deal in
the following case.

                 String s = "good"
                 s+= "morning" //isn't this wrong??? but it compiles
well and prints
                 goodmorning.

                 Haven't i changed the original contents of the string
s.One more thing if it
                 creates a new object by appending "morning" to "good"
does that mean
                 "good" is eligible for garbage collection now. How can
i check for the
                 immutability of the strings.

                 A deep explanation would be very helpfull.

                 Thank you very much.

#18 From: megadech@...
Date: Wed Feb 23, 2000 10:05 pm
Subject: [javacert] Java Certification
megadech@...
Send Email Send Email
 
Hello All

I am new to your group, just joined yesterday. I am thinking of
thinking of taking up Java Certification.

Can anybody suggest some really good books as per my background.

I have been into IT for around 5 years now and quite a few years of it
have been using PB-Oracle. Picked up Java in September and have been
reading a lot of material on java and related technologies.

Some sites say book by Simon Roberts, Philip Heller is good.
Others say it covers a lot about API which is not really required.

Also have some good reviews on books by Bill Brogden Exam Prep and Exam
Cram.
Has anybody read them. Are they for more experienced people.

Please do provide any info you all might have

Thanks

Best Regards
N.J.

#17 From: "Marcus Green" <mail@...>
Date: Wed Feb 23, 2000 8:31 pm
Subject: [javacert] Re: SCJP info
mail@...
Send Email Send Email
 
"frank z.f. xie" <frank_xi-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=4
> Hi, There
>
> For anyone who have taken SCJP test, would you please tell me if I
> would be told the number of the correct items for each question?
>
No, you will be asked questions like

//Quote
Which of the following are Java modifiers?

1) public
2) private
3) friendly
4) transient
4) vagrant

//EndQuote

You will not be told how many are correct items.

Try a search engine for mock exams and you will get a good idea of what
the questions are like.

Marcus

#16 From: "Pankaj sachdeva" <sachdevapankaj@...>
Date: Wed Feb 23, 2000 5:33 pm
Subject: [javacert] Passed with 78%
sachdevapankaj@...
Send Email Send Email
 
Hi everyone ,
Passed SCJP2 today(22/02/2000) with 78%. I sincerly thank all the
persons who are behind these discussion  forums. this is very good
place to clear your doubts.
Special thanks to Marcus , Roll & Tony.
About my test, first my score is not very good mainly because of those
theory type Qs. which ask you "Which of the following is/are true about
XXX(Some topic) ?" I had about 8 such Qs.I had  2 from GridBag, 3 from
IO.
My ref. Roberts & Heller -Sybex, Java Lang. Specification, API & all
those great tests on the net without which this was not possible .

I once again thank you all who are behind all these wonderfull sites.

Pankaj Sachdeva

#15 From: "Sreenivasa \"Msk\" Majji" <sreenivasa.majji@...>
Date: Wed Feb 23, 2000 3:49 pm
Subject: [javacert] Re: No Subject
sreenivasa.majji@...
Send Email Send Email
 
No difference at all.
Interfaces are implicitly abstract.

-Sreenivasa Kumar Majji

----- Original Message -----
From: "B. V. Narayana" <bvnarayana@...>
To: <javacertstudy@eGroups.com>
Sent: Wednesday, February 23, 2000 06:19
Subject: [javacert] No Subject


| Hi all,
|
| When we define an interface as "abstract interface", how different is
| this w.r.t. "interface"?
|
| Thanks
| Batchu
|
|
| ------------------------------------------------------------------------
| To Post a message, send it to:   javacertstudy@eGroups.com
| To Unsubscribe, send a blank message to: javacertstudy-unsubscribe@eGroups.com
|
| ------------------------------------------------------------------------
| Get what you deserve with NextCard Visa! ZERO! Rates as low as 0.0%
| Intro or 9.9% Fixed APR, online balance transfers, Rewards Points,
| no hidden fees, and much more! Get NextCard today and get the credit
| you deserve! Apply now! Get your NextCard Visa at:
| http://click.egroups.com/1/914/0/_/403936/_/951315568/
|
| -- Check out your group's private Chat room
| -- http://www.egroups.com/ChatPage?listName=javacertstudy&m=1
|
|

#14 From: "B. V. Narayana" <bvnarayana@...>
Date: Wed Feb 23, 2000 2:19 pm
Subject: [javacert] No Subject
bvnarayana@...
Send Email Send Email
 
Hi all,

When we define an interface as "abstract interface", how different is
this w.r.t. "interface"?

Thanks
Batchu

#13 From: "sivateam" <thegreatsiva_2000@...>
Date: Wed Feb 23, 2000 1:17 pm
Subject: [javacert] Re: Sun Java Architect Security awareness sample questions
thegreatsiva_2000@...
Send Email Send Email
 
"chris west" <chris-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=11
> "sivateam" <thegreatsiva_200-@...> wrote:
> original article:http://www.egroups.com/group/javacertstudy/?start=10
> > Our study group has posted some 50 sample questions related to java
> > security awareness. If you want to refer please look at
> >
> > www.mathus.homepage.com
> >
> > sivateam
> >
>
> I tried the "Java Architect" link.  Got "There is an error with your
> selection."  Just letting you know ...
>
> Chris
>
Now it is resolved. Sorry for the roadblock. ...sivateam

#12 From: "K.Satyanarayan Balan" <balank@...>
Date: Wed Feb 23, 2000 10:51 am
Subject: [javacert] New to Java/Need directions
balank@...
Send Email Send Email
 
Hi
	 I would like to know about how to prepare for the java certification.
I also wanted to know if there are any institutes in India which give
this certification.

#11 From: "Chris West" <chrisw@...>
Date: Wed Feb 23, 2000 12:46 am
Subject: [javacert] Re: Sun Java Architect Security awareness sample questions
chrisw@...
Send Email Send Email
 
"sivateam" <thegreatsiva_200-@...> wrote:
original article:http://www.egroups.com/group/javacertstudy/?start=10
> Our study group has posted some 50 sample questions related to java
> security awareness. If you want to refer please look at
>
> www.mathus.homepage.com
>
> sivateam
>

I tried the "Java Architect" link.  Got "There is an error with your
selection."  Just letting you know ...

Chris

#10 From: "sivateam" <thegreatsiva_2000@...>
Date: Tue Feb 22, 2000 6:50 pm
Subject: [javacert] Sun Java Architect Security awareness sample questions
thegreatsiva_2000@...
Send Email Send Email
 
Our study group has posted some 50 sample questions related to java
security awareness. If you want to refer please look at

www.mathus.homepage.com

sivateam

#9 From: "lily" <david_lily@...>
Date: Tue Feb 22, 2000 1:55 pm
Subject: [javacert] Looks Good
david_lily@...
Send Email Send Email
 
Hai, It's been 2 to 3 weeks i didn't come to discussion group. This morning when i came back in, HAI whole site changed by 180 degree. Well i need some help. It's been a month since i have passed SCJP2, but i havn't got my certificate package. I would like to know how long will it take to get it from SUN?.. Then what the package contains.. Thank you so much.. Where is everybody, TONY, carl ... lily.

#8 From: "Chris West" <chrisw@...>
Date: Mon Feb 21, 2000 9:52 am
Subject: [javacert] Developer Project/Exam
chrisw@...
Send Email Send Email
 
I have spent weeks designing/coding my Developer Project, working alone
with few "talking resources".  I went into this cerification a bit
experience poor, but have managed to obtain the correct materials from
which to study and now feel that I have the knowledge to successfully
complete this certification.  However, my approach has resulted in many
design changes, etc.  I did overdo the interface, providing additional
capability to adequately test some of the functionality I was requried
to add.  I currently have about 6000 lines of code/comments and am
nearly complete with it.

Sun claims that they give explicit requirements from which to design
the project, yet in the some document admit that some things have been
left purposefully vague.  This has caused me to overdesign a bit,
something I'm a bit concerned about (as their requirements are written
in such a manner as to discourage this .... likely to make things a bit
more fair for those working on the project, as well as making the
evaluation a bit more definitive.

I just would like to get some feedback regarding how much time others
have taken to do the project, the number of lines of code they
submitted, etc.  Also, how difficult is the exam (without getting to
precise regarding its content)?  Does anybody know how many people have
completed this certification?

I'm concerned about a few things:

1) It wasn't necessary for me to develop an Applet, and consequently
didn't use to many layout managers (which sometimes are cumbersome to
use and often result in awkward interfaces ... although they do have
their place).
2) I didn't alter the data interface, even though the supplied code
passed more information accross the network then necessary(making it a
bit inefficient).  I wasn't certain if I had a license to make these
type of changes, as it might impact the way Sun evaluates my project.
3) By "test harness", I assumed that Sun meant the functionality
requirements listed in their requirements document.  I didn't receive a
"tool" which would provide a means to test my design.
4) I did use ArrayList, Collections class, plus a few others, but not
Iterator.
5) A person could spend much time with exception handling alone.  My
approach was to do the minimum, as their evaluation criteria doesn't
assign many points to this aspect.

Part of my difficulty with this is that I've never been involved in the
design of a client/server app.  Just thinking about how to do it has
made me well aware how complex it can be (e.g., do you have a continous
connection or connect/disonnect with each transaction; do you launch a
separate thread for each transaction or do you use a thread queue ... I
could go on).

What I'm doing is to putting together a thorough but concise summary of
my design decisions, as they request in the spec.  This will at least
demonstrate I have some knowledge of this type of design.

Any comments on the above would be appreciated.  I've worked too long
and hard on this to not pass.

Once I'm finished and have received my results, I'll gladly provide a
bit of insight regarding my experience with this certification.

Thanks ...

Chris

#7 From: Ian Wojtowicz <ian@...>
Date: Mon Feb 21, 2000 7:26 am
Subject: [javacert] Re: SCJP info
ian@...
Send Email Send Email
 
> But does it tell me how many right answers there are? Just like MCSE, it
> tells you to "Select two", "Select three", etc for the check box type.

It does not.

___________________________________________________________________________
ian wojtowicz                                           http://javacert.com

#6 From: "Frank Z.F Xie" <frank.xie@...>
Date: Mon Feb 21, 2000 6:47 am
Subject: [javacert] Re: SCJP info
frank.xie@...
Send Email Send Email
 
Hi, there

Thanks for your inputs.

But does it tell me how many right answers there are? Just like MCSE, it
tells you to "Select two", "Select three", etc for the check box type.

Frank Xie

----- Original Message -----
From: "Sreenivasa "Msk" Majji" <sreenivasa.majji@...>
To: <javacertstudy@egroups.com>
Sent: Monday, February 21, 2000 2:35 PM
Subject: [javacert] Re: SCJP info


> Hi
>
> I passed SCJP exam in June 1999.
>
> If I understood your question correctly my answer is,
> in the test you have to select ALL correct answers otherwise it will be
counted as wrong.
> For some questions it is radio button type (one answer) and some questions
it is check box type.
>
>
> -Sreenivasa Kumar Majji
>
>
>
>
> ----- Original Message -----
> From: "Frank Z.F. Xie" <frank_xie@...>
> To: <javacertstudy@eGroups.com>
> Sent: Sunday, February 20, 2000 22:05
> Subject: [javacert] SCJP info
>
>
> | Hi, There
> |
> | For anyone who have taken SCJP test, would you please tell me if I
> | would be told the number of the correct items for each question?
> |
> |
> | ------------------------------------------------------------------------
> | To Post a message, send it to:   javacertstudy@eGroups.com
> | To Unsubscribe, send a blank message to:
javacertstudy-unsubscribe@eGroups.com
> |
> | ------------------------------------------------------------------------
> | GET A NEXTCARD VISA, in 30 seconds!  Get rates as low as 0.0%
> | Intro or 9.9% Fixed APR and no hidden fees.  Apply NOW!
> | http://click.egroups.com/1/911/0/_/403936/_/951113145/
> |
> | -- 20 megs of disk space in your group's Document Vault
> | -- http://www.egroups.com/docvault/javacertstudy/?m=1
> |
> |
>
> ------------------------------------------------------------------------
> To Post a message, send it to:   javacertstudy@eGroups.com
> To Unsubscribe, send a blank message to:
javacertstudy-unsubscribe@eGroups.com
>
> ------------------------------------------------------------------------
> Shop the web for great deals. Save on Computers,
> electronics, Home furnishings and more.
> http://click.egroups.com/1/1559/0/_/403936/_/951114996/
>
> -- Talk to your group with your own voice!
> -- http://www.egroups.com/VoiceChatPage?listName=javacertstudy&m=1
>

#5 From: "Sreenivasa \"Msk\" Majji" <sreenivasa.majji@...>
Date: Mon Feb 21, 2000 6:35 am
Subject: [javacert] Re: SCJP info
sreenivasa.majji@...
Send Email Send Email
 
Hi

I passed SCJP exam in June 1999.

If I understood your question correctly my answer is,
in the test you have to select ALL correct answers otherwise it will be counted
as wrong.
For some questions it is radio button type (one answer) and some questions it is
check box type.


-Sreenivasa Kumar Majji




----- Original Message -----
From: "Frank Z.F. Xie" <frank_xie@...>
To: <javacertstudy@eGroups.com>
Sent: Sunday, February 20, 2000 22:05
Subject: [javacert] SCJP info


| Hi, There
|
| For anyone who have taken SCJP test, would you please tell me if I
| would be told the number of the correct items for each question?
|
|
| ------------------------------------------------------------------------
| To Post a message, send it to:   javacertstudy@eGroups.com
| To Unsubscribe, send a blank message to: javacertstudy-unsubscribe@eGroups.com
|
| ------------------------------------------------------------------------
| GET A NEXTCARD VISA, in 30 seconds!  Get rates as low as 0.0%
| Intro or 9.9% Fixed APR and no hidden fees.  Apply NOW!
| http://click.egroups.com/1/911/0/_/403936/_/951113145/
|
| -- 20 megs of disk space in your group's Document Vault
| -- http://www.egroups.com/docvault/javacertstudy/?m=1
|
|

#4 From: "Frank Z.F. Xie" <frank_xie@...>
Date: Mon Feb 21, 2000 6:05 am
Subject: [javacert] SCJP info
frank_xie@...
Send Email Send Email
 
Hi, There

For anyone who have taken SCJP test, would you please tell me if I
would be told the number of the correct items for each question?

#3 From: Krishna <kkg@...>
Date: Sun Feb 20, 2000 2:55 pm
Subject: [javacert] Re:BitShift
kkg@...
Send Email Send Email
 
Hi  Qaiser,
      Two important points with regards to BitShift in java are
1)   The left shift and unsigned right shift fill the vacated spaces
with zeroes
2)   the signed right shift fill the vacated spaces with the sign bit.

So in this case,
     i = 1                       00000000 00000000 00000000 00000001
     i<<31                     10000000 00000000 00000000 00000000
     i>>31                     11111111 11111111 11111111 11111111
     i>>1                       11111111 11111111 11111111 11111111
which is  i = -1

Same is the case for j.  that's the reason.

Even though j is not right shifted finally by 1 place it is still -1.

Cheers,
krishna

#2 From: "Qaiser Fayyaz" <qaiser_fayyaz@...>
Date: Fri Feb 18, 2000 3:02 am
Subject: [javacert] bit shift
qaiser_fayyaz@...
Send Email Send Email
 
Can any one explain me why the output of following code is
i = -1
j = -1

public class BitShift
{
    public static void main(String args[])
    {
       int i = 1;
       i <<= 31;
       i >>= 31;
       i >>=1;

       int j = 1;
       j <<= 31;
       j >>=31;

      System.out.println("i = " +i);
      System.out.println("j = " + j);

    }
}

#1 From: "Ian Wojtowicz" <ian@...>
Date: Thu Feb 17, 2000 10:47 am
Subject: Welcome to Java Certification Study Group
ian@...
Send Email Send Email
 
Hi,

Welcome to the egroups discussion forum for http://javacert.com

We are currently upgrading the community software on our site and will be using
egroups as a temporary replacement while development and testing is completed at
javacert.com

Cheers,

Ian Wojtowicz

Messages 1 - 30 of 81494   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help