Forums Register Login

Why is this output?

+Pie Number of slices to send: Send
Hi all,

Please explain me why and HOW is it printing the o/p like it does below?

int result = 2 ^ 3 //prints 1
int result = 3 ^ 3 //prints 0
int result = 3 ^ 77 //prints 78 ???


Thanks,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
^ is bitwise exclusive or

2 ^ 3 =

00000000000000000000000000000010 ^
00000000000000000000000000000011

=

00000000000000000000000000000001

=

1
+Pie Number of slices to send: Send
Thats the bitwise exclusive OR (XOR) operator (One and only one bit can be on) so for

2 ^ 3


3 ^ 3


3 ^ 77

[ October 11, 2006: Message edited by: Tim LeMaster ]
+Pie Number of slices to send: Send
Hi Guys,

Thanks for the reply. But how did you know that 2 is represented as 000000000000......10 in binary form? I just wanna know that.

Regards,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
http://en.wikipedia.org/wiki/Binary_numeral_system

And Int is 32 bit in Java.
[ October 11, 2006: Message edited by: Tim LeMaster ]
+Pie Number of slices to send: Send
Hi Tim,

Will the SCJP exam require us to know all this? I'm planning for SCJP 1.4. Will this do any good to me to know in depth about this?

Regards,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
 

Originally posted by Jothi Shankar Kumar Sankararaj:
Hi Guys,

Thanks for the reply. But how did you know that 2 is represented as 000000000000......10 in binary form? I just wanna know that.

Regards,
Jothi Shankar Kumar. S



Binary form is represented (with no surprise) with base 2 mathematics. See this for more information.

Henry
+Pie Number of slices to send: Send
I believe 1.4 has bitwise and shift operators on the exam. The 1.5 exam I don't think does as it focus more on the new features in 1.5 and more Java API questions.

Either way I believe you should be able to interpret binary and effect of the bitwise operators on it.
+Pie Number of slices to send: Send
Hi all,

Thanks for those who helped me with this. Is there any hard and fast rule with which we can convert decimal numbers to binary?? Anyone on this?

Regards,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
Hi cowboys,

Jothi Shankar Kumar Sankararaj wrote:


Is there any hard and fast rule with which we can convert decimal numbers to binary??




What do you mean by decimal numbers?
If you mean integers to the base 10, then try e.g.


If you mean floating point numbers (doubles and floats) than the answer is no.
They are treated with different precission, depending your methods or classes have the strictfp modifier or not.

Yours,
bu.
+Pie Number of slices to send: Send
Hi all,

Tha above explanation is fine but I wont have the chance to compile when I write my exam??javascript: x()
Big Grin

The above explanation is fine but what if I want to try it out in a paper when I find similiar question on the exam? I remember learing binary to decimal conversion in my school days. So anyone please let me know the logic behind the conversion.

Regards,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
+Pie Number of slices to send: Send
Hi above,

Thanks for the reply. That link really helped me.

Regards,
Jothi Shankar Kumar. S
There is no beard big enough to make me comfortable enough with my masculinity to wear pink. Tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 825 times.
Similar Threads
Char to int
Dan's questions : static variable
i++
dan exam doubt 8
somebody help me this question(Operators)
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 01:12:05.