Re: HEX

2001-03-01 Thread Craig Lindstrom
I usaully break things down to a nibble at a time if I'm doing binary to hex. 4 bits is exactly 1 Hex digit. Then I make a little chart (stick this chart in your wallet if you cant make it as fast as you can write) Bin = Hex=Dec =0=0 0001=1=1 0010=2=2 0011=3=3 0100=4=4 0101=5=5 0110=6=6 011

RE: HEX

2001-03-02 Thread Nuria CaƱamares
Why don't you use the calculator of windows accesories? -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]En nombre de Dale Frohman Enviado el: Jueves 1 de Marzo de 2001 3:24 PM Para: [EMAIL PROTECTED] Asunto: HEX Does anyone have a way/tricks in remembering how to do H

RE: HEX

2001-03-02 Thread Barronton, Ken
Because you can't use it during an exam. Real life...OK, exam...NO. -Original Message- From: Nuria Canamares [mailto:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 6:27 AM To: 'Dale Frohman' Cc: [EMAIL PROTECTED] Subject: RE: HEX Why don't you use the calculator o

RE: HEX

2001-03-02 Thread Andrew Cook
-to-decimal conversion page! Don't know about the other tests, though. Andrew Cook > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of > Barronton, Ken > Sent: Friday, March 02, 2001 7:27 AM > To: 'Nuria Canamares' > Cc: [EM

RE: HEX

2001-03-02 Thread Dale Frohman
> From: Nuria Canamares [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 02, 2001 6:27 AM > To: 'Dale Frohman' > Cc: [EMAIL PROTECTED] > Subject: RE: HEX > > > Why don't you use the calculator of windows accesories? > > -Mensaje original- >

RE: HEX

2001-03-02 Thread Curtis Call
>On Fri, 2 Mar 2001, Barronton, Ken wrote: > > > Because you can't use it during an exam. Real life...OK, exam...NO. > > > > -Original Message- > > From: Nuria Canamares [mailto:[EMAIL PROTECTED]] > > Sent: Friday, March 02, 2001 6:27 AM > > To:

RE: HEX

2001-03-02 Thread Priscilla Oppenheimer
ent: Friday, March 02, 2001 6:27 AM > > To: 'Dale Frohman' > > Cc: [EMAIL PROTECTED] > > Subject: RE: HEX > > > > > > Why don't you use the calculator of windows accesories? > > > > -Mensaje original- > > De: [EMAIL PROTECTED

RE: HEX

2001-03-02 Thread Hartnell, George
culator for years. The memorization/concept isn't that hard, though, and, really, CCxx's should, as advertised, be able to do this, 'in your head'. Best, G. -Original Message- From: Priscilla Oppenheimer [mailto:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 4:27 PM To

Re: HEX

2001-03-04 Thread Tom Lisa
on/concept isn't that > hard, though, and, really, CCxx's should, as advertised, be able to do this, > 'in your head'. > > Best, G. > > -Original Message- > From: Priscilla Oppenheimer [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 02, 2001 4:27 PM &

Re: hex conversion [7:40437]

2002-04-03 Thread Howard C. Berkowitz
Well, if you count not just on your fingers but include your eyes, ears, and nostrils, you can always count to 16. The proctor would really have trouble excluding THAT calculator from the lab. I'm tired at the end of a long day, but the trick, if there is one, is REALLY being able to understan

Re: Re: hex conversion [7:40437]

2002-04-03 Thread John Neiberger
On Wed, 3 Apr 2002, Howard C. Berkowitz ([EMAIL PROTECTED]) wrote: > Well, if you count not just on your fingers but include your eyes, > ears, and nostrils, you can always count to 16. > > The proctor would really have trouble excluding THAT calculator from the > lab. > > I'm tired at

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread James Hampton
the place values for base 16 numbering starting from right to left are 16^0, 16^1,16^2,16^3, etc. In case your wondering 16^1 means 16 to the power of 1, or just 16. Like wise 16^3 = 16 * 16 * 16. So if you hex value is 2f2, starting with the right most 2, (16^0 * 2)+ (16^1 * 15) + (16^2 * 2). Whi

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread MADMAN
Not sure what you mean, I just use a calculator F00 = 3840 2F2 = 754 dave Mckenzie Bill wrote: > > Could someone help me get a clear understanding of converting the hex number > to a nice decimal ring number or bridge number. > > Two examples that have me stumped are: > > F00 and 2f2. >

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Ole Drews Jensen
Hex is based on 16, where Dec is based on 10. When you see a value, no matter if it's in dec, hex, bin, or something else, think of each number as being number 0 (the right one), 1, 2, 3, and so on. If you for instance have the decimal value 579: Number 0 would be 9 Number 1 wou

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Kelly Cobean
Bill, Hex is equivalent to Base16 numbering. Decimal is really Base10 numbering. Let's look at an example of Base10 numbering broken down into it's components, then we'll tackle your examples.. The decimal number 4243 drawn out in Base10 is as follows: (4x10^3) + (2x10^2) + (4x10^1) +

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Persio Pucci
Nice going, Ole! Now, how about an easy way to convert decimal to hex without going through binary (the way I learned)? :) Persio - Original Message - From: "Ole Drews Jensen" To: Sent: Thursday, March 14, 2002 12:07 PM Subject: RE: Hex to Decimal for the RD [7:38223]

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Fred Ingham
All very good but an easier route is to configure the ring numbers in hex; the router will give the decimal equivalents. int tok 0 ring 16 source-bridge 0xf00 2 0x2f2 will appear as int tok 0 ring 16 source-bridge 3840 2 754 Fred. Kelly Cobean wrote: > > Bill, >Hex is equivalent to Base

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Ole Drews Jensen
To: [EMAIL PROTECTED] Subject: Re: Hex to Decimal for the RD [7:38223] Nice going, Ole! Now, how about an easy way to convert decimal to hex without going through binary (the way I learned)? :) Persio - Original Message - From: "Ole Drews Jensen" To: Sent: Thursday, March 14, 200

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Tom Lisa
ay I learned)? :) > > Persio > > - Original Message - > From: "Ole Drews Jensen" > To: > Sent: Thursday, March 14, 2002 12:07 PM > Subject: RE: Hex to Decimal for the RD [7:38223] > > > Hex is based on 16, where Dec is based on 10. > > > > Whe

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Priscilla Oppenheimer
At 09:01 AM 3/14/02, Mckenzie Bill wrote: >Could someone help me get a clear understanding of converting the hex number >to a nice decimal ring number or bridge number. > >Two examples that have me stumped are: > >F00 and 2f2. Why would just those two numbers have you stumped? If you can do any