Quote:
Originally Posted by SoLiDUS
The second is related to binary/hex or octal
10, 171, 3004, 52429, 908766, x
Find the value of x
|
Answer = 61167
Reason
Decimal converted to binary then to hex
10 > 1010
171 > 10101011
3004 > 10111011100
52429 > 1100110011001101
908766 > 1101110111011110
upon converting to binary - convert to hex and get these results.
000A
00AB
0BBC
CCCD
DDDE
as you can see it makes a pattern
EEEF
This converts to
1110111011101111
converts to decimal:
61167
if i have time later i'll see if i can attempt no 3