Computer Science, asked by krishanedulark, 1 year ago

3217 into 2-base (binary) representation?

Step by step..please anybody can help me

Answers

Answered by don762
0

To convert in binary we have to divide by 2 and remainder is stored to right side.we should starts to write numbers from downward.

Attachments:

krishanedulark: thanks for this.
krishanedulark: Can you do this question also. Question:
Determine the value of base b if (152)b = 0x6A. Please show all steps.
krishanedulark: Question: 0xBAD into 3-base representation
krishanedulark: Question: Given a (very) tiny computer that has a word size of 3 bits, what are the lowest value
(negative number) and the highest value (positive number) that this computer can represent
in each of the following representations?
krishanedulark: i) One's complement
ii) Two's complement
iii) Signed Magnitude
Answered by franktheruler
1

Answer:

                     

                        result         remainder

3217 ÷ 2 =       1608               1        ↑

1608 ÷ 2 =       804                0        ↑

804 ÷ 2 =         402                0        ↑

402 ÷ 2 =         201                 0        ↑

201 ÷ 2 =          100                 1        ↑

100 ÷ 2 =          50                  0        ↑

50 ÷ 2 =           25                  0        ↑

25 ÷ 2 =           12                   1         ↑

12 ÷  2 =            6                   0        ↑

6  ÷ 2 =              3                  0         ↑

3 ÷ 2 =               1                   1          ↑

1 ÷ 2 =                0                  1          ↑

( 3217 ) ₁₀ = ( 110010010001 ) ₂

Similar questions