retagged by
527 views

3 Answers

Best answer
2 votes
2 votes

To convert binary to hexadecimal:

  • Group binary digits in the batches of four. Start grouping from right to left.
  • Convert each batch to hexadecimal form using 8421 code.
    • Use 10 = A, 11 = B .... 16 = F
  • Write all converted digits together

We are given

1100101110011011
  • After grouping in four digit batches, we have
1100 1011 1001 1011
  • Equivalent hexadecimal form of each digit would be
C   B    9   B
selected by
0 votes
0 votes

solve this question via hexa table

in hexa the group of binary number are 4

1100 1011 1001 1011

this number is equivalent to

C B 9 B

0 votes
0 votes

1100101110011011

From right to left, make a group of 4 bits

$1100 \Rightarrow C$        

$1011 \Rightarrow B$           

$1001 \Rightarrow 9$            

$1011 \Rightarrow B$ 

Related questions

0 votes
0 votes
0 answers
1
deba1014 asked Apr 12
57 views
What is the maximum n-bit number in base x ,when represented in decimal(10)?
0 votes
0 votes
2 answers
3
rajveer43 asked Jan 12
202 views
The number of full and half-adders required to add $32$-bit numbers is______________________
0 votes
0 votes
0 answers
4
Redcom1988 asked Dec 23, 2023
196 views
Design a counter according to the state diagram above using only NAND gates and JK Flip-flops (if needed) complete with state tables