| Author |
Question of the Day - Hex!
|
|
| rsteedma 2002-03-28, 7:00 pm |
| Several sources allege that the 640-607 exam check whether you know HEX. Here's a quiz!
1. Convert 0xC0C0 into decimal?
2. Convert 255 into hexidecimal?
3. What is 67 - 0xA1?
---
Ron Steedman CCNP, CCNA, MCP, BS Computer Science
Free CCNA Practice Tests, Study Guides, & Message Boards!
http://www.congonetworking.com/ | |
| Tekwannabe 2002-03-28, 9:20 pm |
| 1.49344
2.FF
3. | |
| chodan 2002-03-28, 10:26 pm |
| pretty cool IP test on your site.
I got all ten right  | |
| cross36 2002-03-28, 11:11 pm |
| rsteedma, nice site you have going, I especially did like the ARP section. It remind me of some old college materials I was tested on | |
| frank300zx 2002-03-28, 11:29 pm |
| Beside using the calculator (which you can't in the exam) Can you show me how you came up with the 4933 or FF.
Thanks | |
| Taqwus 2002-03-29, 12:26 am |
| For question 2 just convert it to binary, then break the digits up into groups of 8 and add them up in hex
For question 1 you could break the hex up and convert it to binary but I dont think anyone has 2^64 memorized
the answer to 3 is:
67 - 161 = -94 | |
| chunder 2002-03-29, 1:01 am |
| i made this while i was studying for CCNA. maybe it will help.
(word doc.) | |
| frank300zx 2002-03-29, 10:45 am |
| Frankly, I don't see what Cisco would accomplish by testing candidate's Hex conversion ability. There are calculators in real world and I can't possibly see anyone spending their precious one minute on exam drawing up table to convert a number such as
0xC0C0 to decimal (unless you are Rainman). It would not be worth my time atleast. I can see the value ot IP address subnetting, atleast temporarily till the IPV6 comes along. But other than that, it would serve no purpose but to increase the failure rate and generate some cash for testing sites and Cisco. | |
| rsteedma 2002-03-29, 2:04 pm |
| Thanks Chodan and Cross36 - I'm glad you enjoyed the questions / study guide. 
Frank, here's how I converted it:
= 0xC0C0
= C * 16^3 + 0 x 16^2 + C x 16^1 + 0 x 16^0
= C * 16^3 + C * 16^1
= 12 * 16^3 + 12 * 16^1 [C=12]
= 12 * 2^12 + 12 * 16
= 12 * 4096 + (10 * 16) + (2 * 16)
= (10 * 4096) + (2 * 4096) + 160 + 32
= 40960 + 8192 + 192
= 40960 + 8384
= 49344
For the 640-607 CCNA exam...
Converting 0xC0C0 into binary would be fair.
Converting 0xC0C0 into decimal is not fair.
Converting 255 into FF is fair.
Thanks,
Ron
---
Ron Steedman CCNP, CCNA, MCP, BS Computer Science
Free CCNA Practice Tests, Study Guides, & Message Boards
http://www.congonetworking.com/ |
|
|
|