answersLogoWhite

0


Best Answer

This should be an invalid MAC address because the first octet is 9 bytes long. However it converts out to BA:11:55:18:AA:F. However this is not a real MAC address since the OUI (first three octets are not registered to any corporation.) Here are the results of your search through the public section of the IEEE Standards OUI database report for BA:11:55: Sorry! The public OUI listing contains no match for the query BA:11:55

If you want to know the math behind it it becomes tricky. Hex is a 16 base system. We're used to a 10 base system 0-9. Hex runs 0-16 so it counts like this

0=0

1=1

2=2

3=3

4=4

5=5

6=6

7=7

8=8

9=9

A=10

B=11

C=12

D=13

E=14

F=15 So to count by Hex 0F would =15

Then 10 would = 16. You cannot look at it like a ten, it is a one, zero. that's one group of 16 and 0 ones. So 20 (two zero) would equal 32 (two sixteens)

With the basics of hex we can convert the binary to decimal.

To count by binary we once again have to thing a bit differently. while they look like a bunch of ones and zeros they each stand for a different number with each place multiplying the previous number by 2. So it counts 1,2,4,8,16,32,64,128. Only it is read right to left 128,64,32,16,8,4,2,1 The binary number 10101010 can be calculated like this 128 64 32 16 8 4 2 1

1 0 1 0 1 0 1 0 So that is one of each 128,32,8,2

128+32+8+2=170 to convert this 170 to hex we can devide it by 16 170/16=10.625

That gives us 10 full groups of 16 which is a Hexidecimal (A) or 160. This leaves us with a remainder of 10, which we know is another (A). So the Hex for 10101010 = AA

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the hexadecimal equivalent of the ethernet address 010111010 00010001 01010101 00011000 10101010 00001111?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the hexadecimal equivalent of the Ethernet address of 01011010 00010001 01010101 00011000 10101010 00001111?

5A 11 55 18 AA 0F


What is the eight bit binary representation of the decimal number 17?

00010001


What is the full meaning of BCD?

BCD is binary coded decimal but unlike normal binary, the maximum number per byte is 99 instead of 255. It makes its decimal value easy to read by humans but is less efficient because of the number limits as four bits are consumed by each digit. Binary itself is easier to read if you want hexadecimal instead For numbers 0 to 9 the bit pattern is the same as binary but different from 10 onwards as shown below: Decimal, Hex, BCD, normal Binary 000, 00, %00000000, %00000000 001, 01, %00000001, %00000001 002, 02, %00000010, %00000010 003, 03, %00000011, %00000011 004, 04, %00000100, %00000100 ..... 009, 09, %00001001, %00001001 010, 0A, %00010000, %00001010 011, 0B, %00010001, %00001011 ..... 015, 0F, %00010101, %00001111 016, 10, %00010110, %00010000 017, 11, %00010111, %00010001 ..... 099, 63, %10011001, %01100011 ..... 255, FF, not do-able with 1 byte, %11111111


How many bit strings of length 8 begin with three 0s?

There are 32... 00000000 00000001 00000010 00000011 00000100 00000101 00000110 00000111 00001000 00001001 00001010 00001011 00001100 00001101 00001110 00001111 00010000 00010001 00010010 00010011 00010100 00010101 00010110 00010111 00011000 00011001 00011010 00011011 00011100 00011101 00011110 00011111 The most significant three bits in an octet (a byte) are required to be 0 (zero). No further requirement is made about the state of the remaining 5 bits; the bit pattern in the byte thus is 000x xxxx (where 'x' can be either '0' or '1'). Five bits of 'x' allow for 25 = 32 combinations.


Give you example of numeration system?

Examples of a numeration system are: Base 10 or decimal. This system (which is the system that everyone is familiar with) has ten digits 0, 1, 2, 3, 4, 5 6 7 8 and 9. The least significant column has a weighting of 1, the next column to the left a has a weighting of 10 and each successive column to the left has a weighting 10 times that on the column on it's right. Base 2 or binary. This system has only 2 digits 0 and 1. The least significant column has a weighting of1, the next column to the left has a weighting of 2 and each successive column to the left has a weighting 2 times that on the column on it's right. EXAMPLES 1 10 11 100 101 110 111 are the equivalent of the decimal numbers 1 2 3 4 5 6 7. Base 8 or octal. This system has 8 digits 0 1 2 3 4 5 6 and 7. The least significant column has a weighting of1, the next column to the left has a weighting of 8 and each successive column to the left has a weighting 8 times that on the column on it's right. EXAMPLES 5 6 7 10 11 12 13 14 are the equivalent of the decimal numbers 5 6 7 8 9 10 11 12 or in binary 101 110 111 001000 001001 001010 001011 001100. 3 binary digits are used to represent each octal digit so octal 12 001 for the 1 and 010 for the 2 shown as 001010. It is normal to group the binary digits into 3's like this 001 010 Base 16 or hexadecimal. This system has 16 digits 0 1 2 3 4 5 6 7 8 9 A B C D E and F. The least significant column has a weighting of1, the next column to the left has a weighting of 8 and each successive column to the left has a weighting 8 times that on the column on it's right. EXAMPLES 8 9 A B C D E F 10 11 12 are equivelant to the decimal numbers 8 9 10 11 12 13 14 15 16 17 18 or to the binary numbers 1000 1001 1010 1011 1100 1101 1110 1111 00010000 00010001 00010010 note that 15 decimal = F hexadecimal = 1111 binary. Each hexadecimal digit is represented by four binary digits; so 12 hexadecimal has four binary digits to represent the 1 and another four digits to represent the 2 i.e. 0001 and 0010. Shown as 00010010. It is normal to group the binary digits in this case into 4's like this 0001 0010


What is the Pokemon Soul Silver action replay code for the Michina Arceus?

TRU Arceus 94000130 FCFF0000 B2111880 00000000 E0009E4C 00000104 00010001 00000001 00000001 E9FC0000 80CC3D7B 9AF815B0 FBD75914 F45879D2 21244E0C 7405FF78 DA07DF53 C8E4AE17 56BF96AC 7676779C E9F4F2FF 4E71CC2E 5C016360 F0098D53 53ED7155 0F2F1F73 28FB350E 556B032B 0D9642E6 4ACD38C7 C5B85DF2 6D8B57DB F79ECB5E D0F22842 533488C3 E6467D22 1383A281 BA3458B7 5D118BF0 F7F08592 CEC2302C 427E331C AC2141C6 1EE9D28A B7A578BD 374C4A26 DEBC0CD8 92F95736 22317837 D4E459C1 82413E98 FF91B194 3CD5D027 02E7D2AB 1445107D D4934469 742B3167 A857A728 138B2BCE 26D8ABF6 975673D6 C1B333EB D8372D49 062303D5 EEB0FDA5 0AB9A8B3 474E9945 00000000 00000000 00000000 00000000 00000000 D2000000 00000000 Michina Arceus 94000130 FCFF0000 B2111880 00000000 E0009E4C 00000104 00010001 00000001 00000001 54AF0000 518409A6 75696D8A 03599FE6 4FBE3176 B296F513 7193F579 AB6A3675 4309E572 38161999 C95B3C73 E1E4756B 0F4446E2 64700169 968C18A8 C706BE39 6064E48D 7B7275B6 CE7F8373 2A2225B2 B68DDCDF 4F567833 F2D6B1CF 76EB8D9F 3D0C8CAB 1D54CFE4 A0C56622 36213F31 901A980A 74A49815 28E3A011 99CE5909 874106B8 AC2141C6 1EE9D28A B7A578BD 374C4A26 DEBC0CD8 92F95736 22317837 D4E459C1 82413E98 FF91B194 3CD5D027 02E7D2AB 1445107D D4934469 742B3167 A857A728 138B2BCE 26D8ABF6 975673D6 C1B333EB D8372D49 062303D5 EEB0FDA5 0AB9A8B3 474E9945 00000000 00000000 00000000 00000000 00000000 D2000000 00000000


What is the cheating code to catch darkrai on Pokemon platinum?

There is no cheat to catch one but there is one to get one from the pokemart! Go to pokemart and talk to the guy in green. Here it is sorry it's long. Tested and works!: 94000130 fcff0000 b2101d40 00000000 2000005c 00000001 e000b5d4 00000104 00010001 00000001 00000001 92ce0000 44b607a6 47cf79f8 08454767 37a68507 85eb7400 15724539 d53db0f5 09b1a9be eac95498 7d129a41 384a82a4 bf3eca14 d3e6c16b 82c36967 0e931c37 63ef83f9 f1ce788d 8952c220 aaebfa37 bb9635c7 5d0383f4 061017b6 4a460487 34d5719e ed7e64cf 4a6faca9 c13a7648 fe9fabda f88da625 f81c2d28 6ac7cb8a eabb1a78 ac2141c6 1f35d2dc b6c07961 373b4aaf de160ca1 92f95736 22317837 d4e459c1 82413e98 ff91b194 3cd5d027 02e7d2ab e1d6107d 8c1a4469 742b3167 a857a728 138b2bce 26d8abf6 975673d6 c1b333eb d8372d49 062303d5 eeb0fda5 0ab9a8b3 474e9945 00000000 00004000 00000000 00000000 00000000 d2000000 00000000


How do you get Arceus with action replay?

Arceus(Michina) 94000130 FCFF0000 B2111880 00000000 E0009E4C 00000104 00010001 00000001 00000001 E9FC0000 80CC3D7B 9AF815B0 FBD75914 F45879D2 21244E0C 7405FF78 DA07DF53 C8E4AE17 56BF96AC 7676779C E9F4F2FF 4E71CC2E 5C016360 F0098D53 53ED7155 0F2F1F73 28FB350E 556B032B 0D9642E6 4ACD38C7 C5B85DF2 6D8B57DB F79ECB5E D0F22842 533488C3 E6467D22 1383A281 BA3458B7 5D118BF0 F7F08592 CEC2302C 427E331C AC2141C6 1EE9D28A B7A578BD 374C4A26 DEBC0CD8 92F95736 22317837 D4E459C1 82413E98 FF91B194 3CD5D027 02E7D2AB 1445107D D4934469 742B3167 A857A728 138B2BCE 26D8ABF6 975673D6 C1B333EB D8372D49 062303D5 EEB0FDA5 0AB9A8B3 474E9945 00000000 00000000 00000000 00000000 00000000 D2000000 00000000 +Press L+R To activate code +Go to an pokemart +Procure the Pokemon from Mr Green Guy(Mystery Gift Guy) at any Pokemart YOU MUST ENTER THIS CODE WITH ACTION REPLAY MANAGER OR YOU WILL GET A BAD EGG! cheat and get azure flute then go to mount cornet summit and blow the flute


What is the us action replay code for the event riolu that knows aura sphere and came with a special temporary mission in Pokemon ranger shadows of alma for either the platinum heartgold soulsilver?

This code is not for the event. Its just for the Riolu with aura sphere. Its just for the US platinum. Press L and R to activate and go to any pokemart: 94000130 FCFF0000 B2101D40 00000000 2000005C 00000001 E000B5D4 00000104 00010001 00000001 06A6D188 EAD80000 C289C237 F618AA55 F2DF35A0 66FB9D59 9D8508F1 80021117 90845E35 D50411C5 6523297F 01DCC64F DC6AB15C DE93D3E1 F0C4331A 29F34651 B76BCC32 AAC8DCDF A491FCA2 DD206B31 73233D7E 9F4DE700 ABE29001 83908088 DC5F463B F14F78AD B264F271 89764D23 22DAD1F8 DFC89B24 E6044551 0309E7FC 957B632C AAD8B7EC A606400F BDA7D7B5 350CAD38 6E63A003 A25EAFD8 56157EDF CB3C6F28 63F6DD38 0D8A348F 033B5FE0 FAE04E7D 159987AA F36E7DC1 08FF9712 5BB23E76 FE07CA4A C602B356 80171DC3 3CC84D2D 66370E84 855D8300 7F6F6AF6 71D5A307 CD637795 85C703E7 00000000 00004000 00000000 00000000 00000000 D2000000 00000000


Pokemon Platinum event shaymin code?

Heres the one you want, its for the Pokemon TRU(ToysRus) Event to get Shaymin in sky forme. IINSTRUCTIONS: Hold L and R while walking through a Pokemart door, there should be a guy in green, talk to him, he'll give you the Shaymin. 94000130 fcff0000 b2101d40 00000000 e000b5d4 00000104 00010001 00000001 00000001 6bcc0000 f94a4d22 a2ed4caa cf267189 caecb992 554b3bc1 b8b4a7ca 07cbe4b4 8af0827f 52cc6d30 fd0051b2 c2d59baf edff4c0a 07f668de 98c86b80 39b7dc03 4873d6bc 0b85a9c2 8db2d7fc 75d9f5ff 50774196 26de6a62 9bf775e2 2cd30d44 5bdcfe6d 4123d59b 65a5c735 9fef335f 4a094a87 d923e81a e2fd1787 0e076359 eebce6f7 ac2141c6 1f17d2dc b6db7943 37d04aa4 de200c44 92f95736 22317837 d4e459c1 82413e98 ff91b194 3cd5d027 02e7d2ab 8078107d d5834469 742b3167 a857a728 138b2bce 26d8abf6 975673d6 c1b333eb d8372d49 062303d5 eeb0fda5 0ab9a8b3 474e9945 00000000 00004000 00000000 00000000 00000000 d2000000 00000000 Credits to http://www.gamespot.com/ds/rpg/pokemonplatinum/show_msgs.php?topic_id=m-1-49992219&pid=946308&page=0 It's got some really nice Event codes.


How do you catch Dialga on heartgold?

First you have to eneter this cheat code 94000130 FCFF0000 B2111880 00000000 E0009E4C 00000104 00010001 00000001 00000001 E9FC0000 80CC3D7B 9AF815B0 FBD75914 F45879D2 21244E0C 7405FF78 DA07DF53 C8E4AE17 56BF96AC 7676779C E9F4F2FF 4E71CC2E 5C016360 F0098D53 53ED7155 0F2F1F73 28FB350E 556B032B 0D9642E6 4ACD38C7 C5B85DF2 6D8B57DB F79ECB5E D0F22842 533488C3 E6467D22 1383A281 BA3458B7 5D118BF0 F7F08592 CEC2302C 427E331C AC2141C6 1EE9D28A B7A578BD 374C4A26 DEBC0CD8 92F95736 22317837 D4E459C1 82413E98 FF91B194 3CD5D027 02E7D2AB 1445107D D4934469 742B3167 A857A728 138B2BCE 26D8ABF6 975673D6 C1B333EB D8372D49 062303D5 EEB0FDA5 0AB9A8B3 474E9945 00000000 00000000 00000000 00000000 00000000 D2000000 00000000 Then when you enter the pokemart press L+R then a guy with a green suit will give you a level.100 Arceus that knows judgment,roarof time,spaceail rend and shadow fource you then go to the ruins research center then a guy will bump into you he will then take you to the ruins of alph building and then you will teleport to a place than go outside a man will talk you go down again and then talk to the man again he will then go into this house enter the house and talk to the champion Cynthia than she wil go back to the place where you teleported she will than show you the pattern of dialga palkia and giratina choose any one of them.Hope it helped


Can someone translate this action replay code for explorers of darkness to explorers of sky and just modify the answer and please notify in the answer if it is modified so can anyone do it please?

Modify this to Explorers of Sky: (All Pokemon recruited) 722AD1F4 00000215 74000100 6F00000c 022A3404 00000000 DA000000 022A3404 C0000000 00000214 D4000000 00000001 D7000000 022A3404 DC000000 0000004A D2000000 00000000 Is this code modified yet?:_____ If someone can do it, then it will benifit a lot of people! PLEASE SOMEONE DO IT, I'M BEGGING! P.S. I wrote the question and the answer. (Erase "P.S." when this code is modified) And these ones too: Something to do with the gender, 722AD1F4 000004D6 74000100 6F00000c 022A3404 00000258 DA000000 022A3404 C0000000 00000214 D4000000 00000001 D7000000 022A3404 DC000000 0000004A D2000000 00000000 Makes all the Pokemon exist, 722AD1EC 00000001 C0000000 00000216 022A33FC 00010001 DC000000 0000004C D2000000 00000000 Max IQ and HP, 722AD160 000003E7 C0000000 0000021A 122A32D8 000003E7 DC000000 0000004C D2000000 00000000 722AD162 000003E7 C0000000 0000021A 122A32DA 000003E7 DC000000 0000004C D2000000 00000000 Max stats, 722AD164 0000FFFF C0000000 0000021A 122A32DC 0000FFFF DC000000 0000004C D2000000 00000000 722AD166 0000FFFF C0000000 0000021A 122A32DE 0000FFFF DC000000 0000004C D2000000 00000000 Makes names blank for those mis-named Pokemon, 822A343E 00000001 C0000000 00000216 122A343E 00000000 DC000000 0000004C D2000000 00000000 How many of these codes are modded?:_________________________