Computer Science, asked by ishansaha26, 2 months ago

The binary equivalent of a hexadecimal digit 12 c is represented by ?​

Answers

Answered by mohammedayaan55
1

Answer:

1100 is the binary equivalent.

Explanation:

hope it helps u

Answered by allysia
4

Answer:

100101100 for 12C

and

110000010010 for C12

Explanation:

There hexadecimal number have values as followed:

\begin {center} \begin {tabular} { c c  } Decimal & Hexadecimal value \\  0 & 0 \\   1 & 1 \\ 2 & 2 \\ 3 & 3 \\ 4 & 4 \\ 5 & 5 \\ 6 & 6 \\ 7 & 7 \\ 8 & 8 \\ 9 & 9 \\ 10 &  A \\ 11 & B \\ 12 & C \\ 13 & D \\ 14 & E \\ 15 & F \end {tabular} \end {center}

Using this, 12C will be condensed as:

\begin{center} \begin {tabular} {c|  c| c| c| } Hex & 1 & 2 & C \\ Hex &  1 & 2 &  12 \\ Decimal & 1 x(16)^{2} & 2x16 &  12x16^{0} \\ Decimal &  256 &  32 &  12 \\ \end{tabular} \end{center} \\ \\ Final value =  256+32+12= 300

Converting to Binary now,

For decimal 300 by division by 2 method:

100101100

For 12C using the same method

\begin{center} \begin {tabular} {c|  c| c| c| } Hex & C & 1 & 2 \\ Hex &  12 & 1 &  2  \\ Decimal & 12x(16)^{2} & 1x16 &  2x16^{0} \\ Decimal &  3072 &  16 &  2 \\ \end{tabular} \end{center} \\ \\ Final value =  3072+16+2= 3090

Similarly, 3090 can be expressed as

110000010010

(Consider the attachment if latex is not visible)

Attachments:
Similar questions