I was just working thru some practice problems that involved shifters and some binary operators (|,~,^,&) on some pretty large numbers ie: 0x80000000 Are you expected to be able to perform those calculations by hand or will most of the questions have small enough numbers? And if calculators are allowed, just it matter what kind?
int x = 0x80000000; x = x >>> 2; system.out.println(x);
i'm expected to know the base 2 numbers that high?
Atul Sawant
Ranch Hand
Joined: Jul 06, 2006
Posts: 304
posted
0
If you would know how to crack those the concepts you learn will be more stronger however it is NOT required if you aim to pass the exam. I dont think they expect something like thsi from you. This is my personal opinion.
It is extremely simple to convert a hex number to binary. That only requires you remembering what 0 - F mean.
Bert Bates
author
Sheriff
Joined: Oct 14, 2002
Posts: 8712
posted
0
On the 5.0 exam you don't need to worry about this stuff at all.
On the 1.4 exam understanding bit repesentations is a minor topic, and mostly you need to understand two-s complement and binary representaions in general, so that you know a big number, or a small number, or a negative number, when you see one. You don't have to be able to calculate 2^N where N is say bigger than maybe 4
Eliminate fossil fuel subsidies. (If you're not on the edge, you're taking up too much room.)
Jay Dilla
Ranch Hand
Joined: Aug 12, 2004
Posts: 196
posted
0
Thanks bert bates. Keith my problem is not with conversion, but the scale on which I will be converting, lol. The converting from one number type to the other is easy, but I'm worried about having to figure out the binary of 7654325634654 on paper. It will be too time consuming imo.
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
posted
0
I don't think you would ever get a number like that. What I was referring to was a number like 0x80000000, where its easy to get the bit representation.