Anoop Singh

Greenhorn
+ Follow
since May 27, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Anoop Singh

Hi everyone

I am new to web service.please suggest me book ,tutorial to get basic of java web service.

Thanks in advance
15 years ago
Welcome Terence Parr
I am always looking for this type of book. I am looking forward to read your book.
could you please tell us little bit more about the book.
Hi every one

I am new in J2ME. Please suggest me any book which help me to get the basics of J2ME.thanks in advance
16 years ago
Hi all
I Have purchased the voucher from NIIT. It cost me Rs 4500 .The code above the expire date is not scratched. Is this voucher is ok.
And also suggest me how to schedule the exam with this voucher.I mean to say What I need to schedule the exam. Please also tell whether that code over the expire date of voucher is scratched during the exam in exam center.

Thank you
Anoop
hi all

Thank you very much for suggesting.
I am new to JavaRanch Forum .Even any kind of forum. I think am at right place where I can improve my java Knowledge.
Thank you once again for your suggestion.I am looking forward to explore java because many people out there to help me.

thank you
with regard

champ
[ May 30, 2008: Message edited by: Champ Me ]
Hi all
I am getting discount on scjp5 voucher from NIIT Ghaziabad. Duration of this voucher is up to 1 January 2009. I will take the exam in mid of july this year. Please suggest me is it ok to purchase this voucher. What should I care while purchasing this voucher .

Thank you
Champ
[ May 30, 2008: Message edited by: Champ Me ]
Hi All

I am preparing for SCJP 5. And I will take this exam in mid of July. Persently I am refring K & B book as a referance guide.I have taken SCJP 5 exam simulater for practice. But want more questions to strenghten my skill of the real exam.For that I am looking mock exam which give me teat of real exam.
so please suggest some quality mock exam online.

Originally posted by Champ Me:
Hi Rimi

Well in case of ternary like in
//1
String s3 = b?s1:s1+s2;
Right hand part can be resolved as
if(b){
s1;
}
else{
s1+s2;
}
and the result of the if condition is assign to the s3 so we get //s3="Foo"

But in other case
//2

it will be resolved as
(
if(b){
s1;
}else{
s1;
}
) + s2;

the result of the if condition is resolved first and the result is concatenated with s2. and the final result is assign to the s4. That is why we get
//s4="FooBar"
Don't forget parenthesis has the highest precedence.

I Explain it in this form so that you have good understanding.
I hope you like it.

Hi Rimi

Well in case of ternary like in
//1
String s3 = b?s1:s1+s2;
Right hand part can be resolved as
if(b){
s1;
}
else{
s1+s2;
}
and the result of the if condition is assign to the s3 so we get //s3="Foo"

But in other case
//2

it will be resolved as
(
if(b){
s1;
}else{
s2;
}
) + s2;

the result of the if condition is resolved first and the result is concatenated with s2. and the final result is assign to the s4. That is why we get
//s4="FooBar"
Don't forget parenthesis has the highest precedence.

I Explain it in this form so that you have good understanding.
I hope you like it.