0% found this document useful (0 votes)
14 views2 pages

Assignment - Binary Numbers and Binary Addition

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

Assignment - Binary Numbers and Binary Addition

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Q1. Write the decimal equivalent of the binary number 10110.

1. Start from the rightmost digit (least significant bit).

2. Multiply each bit by 2 raised to the power of its position, starting from 0.

3. 10110 = (1 * 16) + (0 * 8) + (1 * 4) + (1 * 2) + (0 * 1)

4. Simplify: 16 + 0 + 4 + 2 + 0 = 22

Answer: 22

Q2. Write the decimal equivalent of the binary number 110101.

1. Start from the rightmost digit (least significant bit).

2. Multiply each bit by 2 raised to the power of its position, starting from 0.

3. 110101 = (1 * 32) + (1 * 16) + (0 * 8) + (1 * 4) + (0 * 2) + (1 * 1)

4. Simplify: 32 + 16 + 0 + 4 + 0 + 1 = 53

Answer: 53

Q3. Write the binary equivalent of the decimal number 45.

1. Divide 45 by 2, quotient is 22, remainder is 1.

2. Divide 22 by 2, quotient is 11, remainder is 0.

3. Divide 11 by 2, quotient is 5, remainder is 1.

4. Divide 5 by 2, quotient is 2, remainder is 1.

5. Divide 2 by 2, quotient is 1, remainder is 0.

6. Divide 1 by 2, quotient is 0, remainder is 1.

7. Write the remainders in reverse order: 101101

Answer: 101101

Q4. Write the binary equivalent of the decimal number 60.

1. Divide 60 by 2, quotient is 30, remainder is 0.

2. Divide 30 by 2, quotient is 15, remainder is 0.

3. Divide 15 by 2, quotient is 7, remainder is 1.

4. Divide 7 by 2, quotient is 3, remainder is 1.

5. Divide 3 by 2, quotient is 1, remainder is 1.

6. Divide 1 by 2, quotient is 0, remainder is 1.

7. Write the remainders in reverse order: 111100

Answer: 111100

Q5. Write the binary equivalent of the decimal number 33.


 Divide 33 by 2, quotient is 16, remainder is 1.

 Divide 16 by 2, quotient is 8, remainder is 0.

 Divide 8 by 2, quotient is 4, remainder is 0.

 Divide 4 by 2, quotient is 2, remainder is 0.

 Divide 2 by 2, quotient is 1, remainder is 0.

 Divide 1 by 2, quotient is 0, remainder is 1.

 Write the remainders in reverse order: 100001

Answer: 100001

You might also like