Digital Electronics - Number Systems and Codes - Discussion

Discussion Forum : Number Systems and Codes - General Questions (Q.No. 1)
1.
Convert hexadecimal value 16 to decimal.
2210
1610
1010
2010
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
25 comments Page 1 of 3.

Ashique Iqbal said:   6 years ago
Hexadecimal is 16. And 1=0001, 6=0110 is binary.

128 64 32 16 8 4 2 1 >(power) .
0 0 0 1 0 1 1 0 >(binary).
16 + 4 + 2 = 22 (decimal).
(3)

Ashique Iqbal said:   6 years ago
hexadecimal is 16. and 1=0001, 6=0110 is binary .
128 64 32 16 8 4 2 1 >(power)
0 0 0 1 0 1 1 0 >(binary)
16+ 4+ 2 =22 (decimal)
(2)

Narasimha said:   1 decade ago
By taking the options we get easy

1st take option (a) and devide it with hex value :16
we get

22/16= 1 is a co-officient and reminder is 6 so put these together 16 it is equal to the given.

Vinaya S said:   1 year ago
Hexadecimal 16 is 1=0001, 6=0110.


So,
0 = 2^7
0 = 2^6
0 =2^5
1 = 2^4
0 = 2^3
1 = 2^2
1= 2^1
0 = 2^0

Then, 1 × 2^4 + 1 × 2^2 + 1 × 2^1 = 22.
(4)

Jayant Patil said:   1 decade ago
First Convert (16)10 to (_)2..
Then You get (10000)2.

Then group the in four bit from the right most side.
Like 0000 , 0001.

Then number them.
Like (10)16,.

Saurabh Aiwale said:   4 years ago
Hexadecimal is 16. and 1=0001, 6=0110 is binary.
128 64 32 16 8 4 2 1 >(power),
0 0 0 1 0 1 1 0 >(binary),
16+ 4+ 2 =22 (decimal).
(11)

Prasad said:   1 decade ago
16 hexa decimal : 1, 0.

And its converted to decimal so 16^1+16^0=16. I know its wrong please any one explain clearly.

Rukhmini said:   1 decade ago
16 radix is 16(hexadecimal)then binary value of it is 00010110 =1*2^(4)+0*2^(3)+1*2^(2)+1*2^(1)+0*2^(0)=16+4+2=22.

G.muni sekhar said:   1 decade ago
The radix of hexa decimal is 16

Ans:
(16)radix 16
1 6
(16^1*1) + ( 16^0 *6)
16+6
=22
Therefore A correct.

Seetha Marni said:   1 decade ago
Hexadecimal means radix is 16 so to convert it to decimal we do As following.

1*16^ (1) + 6*16^ (0) = 16+6 = 22.


Post your comments here:

Your comments will be displayed after verification.