Question

In the following problems, you are asked to convert from one number base to another. I...

In the following problems, you are asked to convert from one number base to another. I am aware that there are calculators that will do this for you. Thus, you must show all your work to get credit for these problems.

1. (3 points) – Convert the 8-binary binary expansion ( 0110 1001 )2 to a decimal expansion.

2. (3 points) – Convert the following decimal expansion (142)10 to an 8-bit binary expansion.

3. (2 points) – Convert the following hexadecimal expansion (4AD)16 to an octal expansion.

4. (2 points) – Convert the following binary expansion ( 1001 1010 0110 0101 )2 to a hexadecimal expansion.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1.

1 * 0 1 2 * 23 = : : : | = = - 1 0 0 1 0 1 1 + 1 + 2 + 4 + 8 + 16 x 32 * 64 : : 0 8 = 32 1 1 + 25 * 26

Add together all products

1 + 0 + 0 + 8 + 0 + 32 + 64 = 105

Answer: 105

========================================

2.

Write down the decimal number and continually divide by 2 to give a result and a remainder. The remainder is either a 1 or a 0.

142 /  2  result 71 remainder  0
71 /  2  result 35 remainder  1
35 /  2  result 17 remainder  1
17 /  2  result 8  remainder  1
8  /  2  result 4  remainder  0
4  /  2  result 2  remainder  0
2  /  2  result 1  remainder  0
1  /  2  result 0  remainder  1

Read the remainders from bottom to top.

( 142 )10 = ( 10001110 )2

Answer: 10001110

========================================

3.

0 1 2 3 4 5 6 7 8 9 A B C D E F
0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111

Given number is 4AD

4 A D
0100 1010 1101

( 4AD )16 = ( 10010101101 )2

Convert each 3 bit of binary to octal using below table

Octal     Binary
-------------------------
0 000
1 001
2 010
3 011
4 100
5 101
6 110
7 111

So, answer is 2255

Answer: 2255

========================================

4.

convert each 4 bit to its hexa value

1001 1010 0110 0101
9 A 6 5

( 1001101001100101 )2 = ( 9A65 )16

Answer: 9A65

Add a comment
Know the answer?
Add Answer to:
In the following problems, you are asked to convert from one number base to another. I...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • In the following problems, you are asked to convert from one number base to another. I...

    In the following problems, you are asked to convert from one number base to another. I am aware that there are calculators that will do this for you. Thus, you must show all your work to get credit for these problems. 1. (3 points) - Convert the 8-binary binary expansion (0101 1001 ), to a decimal expansion. 2. (3 points) - Convert the following decimal expansion ( 124 ).o to an 8-bit binary expansion. 3. (2 points) - Convert the...

  • binary conversions. please help. thank you! Convert the following Binary number to Base 8 4. 1111...

    binary conversions. please help. thank you! Convert the following Binary number to Base 8 4. 1111 1001 0110 0001 1001 0101 1101 1010 1110 0010 0101 Convert the following Base 8 number to binary 5. 200076524, Convert the following Base 8 number to Base 16 6. 1177662231

  • Question 1.1. (TCO 1) Which number system has a radix of two? (Points : 4) Hexadecimal...

    Question 1.1. (TCO 1) Which number system has a radix of two? (Points : 4) Hexadecimal Binary Decimal Octal Question 2.2. (TCO 1) Convert 24 base 10 to hexadecimal. (Points : 4) 1A 18 20 30 Question 3.3. (TCO 1) If FF h is converted to decimal, the result is _____. (Points : 4) 100 200 255 256 Question 4.4. (TCO 1) Convert decimal 103 to an 8-bit binary number. (Points : 4) 1110 0100 0100 0000 0110 0111 0110...

  • Exercise 1.25 Convert the following decimal numbers to unsigned binary numbers Exercise 1.31 Repeat Exercise 1.29,...

    Exercise 1.25 Convert the following decimal numbers to unsigned binary numbers Exercise 1.31 Repeat Exercise 1.29, but convert to 8-bit sign/magnitude numbers KExercise 1.32 Repeat Exercise 1.30, but convert to 8-bit sign/magnitude numbers (a) 4210 (b) 6310 Exercise 1.33 Convert the following 4-bit two's complement numbers to 8-bit two's complement numbers. (c) 22910 (d) 84510 (a) 0101 b) 1010 XExercise 1.26 Convert the following decimal numbers to unsigned binary numbers. Exercise 1.34 Convert the following 4-bit two's complement numbers to...

  • Homework 1: Q1: Convert the following binary number to decimal. • 11001100100.00011 Q2: Convert the following...

    Homework 1: Q1: Convert the following binary number to decimal. • 11001100100.00011 Q2: Convert the following decimal number to binary. • 1365.1234 Q3: Convert the following both to octal and hexadecimal. • (10110100000101.1011)2 (16001.567)10 (directly convert to octal and hexadecimal without converting to binary) Q4: Convert the following hexadecimal number to decimal, octal, and base 4. . ABCD.EF Q5: Convert (375, 765)10 to base 7. Q6: Convert (12310)4 to base 5. Q7: Convert (35421)6 to decimal. Q8: Convert (1991)10 first...

  • 2. Convert the following numbers from binary to decimal. a. 1100012 = b. 11100112 = 3....

    2. Convert the following numbers from binary to decimal. a. 1100012 = b. 11100112 = 3. Convert the following numbers from decimal to binary. EET 1131 Unit 1 Practice sheet -2 a. 6610 = b. 9210 = 4. Convert the following numbers from binary to hexadecimal. a. 1101010012 = b. 11110112= 5. Convert the following numbers from hexadecimal to binary. a. 6C116= b. 83F16 = 6. Convert the following numbers from hexadecimal to decimal. a. 1A2F16 = b. 83F16 =...

  • CS 3503-06 Homework 1 Due: 11:59pm, Friday, Jan. 24. Please show the details of your work....

    CS 3503-06 Homework 1 Due: 11:59pm, Friday, Jan. 24. Please show the details of your work. Please submit in D2L using the associated link. Problems (total: 100 points) Representation of signed numbers (5 x 4 = 20 points) In an 8-bit system, find out the binary representation for the following numbers using sign-and-magnitude, ones’ complement, and two’s complement, respectively: 55 -47 In a 4-bit system, find out the binary representation for the following numbers using sign-and-magnitude, ones’ complement, and two’s...

  • Please show work! 2. Now, give it a try by converting the binary number 01110110 to...

    Please show work! 2. Now, give it a try by converting the binary number 01110110 to decimal by filling in the same table in step 1 r of 2 Pov 128 64 32 16 Cumulative Amount 4. Now, you give it a try by converting the decimal number 131 to binary by filling in the table Power of 2 128 32 16 Bit Amount Remaining 6. Use the binary to hexadecimal table to convert the binary number 01101111 to hexadecimal...

  • 3) Convert following decimal to 8-bit signed numbers in hexadecimal, use two’s-complement for signed integer 127d,...

    3) Convert following decimal to 8-bit signed numbers in hexadecimal, use two’s-complement for signed integer 127d, -20d, -128d, -1d 4) Convert the 16-bit signed numbers to the decimal C0A3h, 3AECh, 0101 1001 0111b, 1011 0101 1001 0111b please solve the problems step by step. It would be of great help.

  • I want solve it fastly Convert the following m e to the mentioned number wystem. 1...

    I want solve it fastly Convert the following m e to the mentioned number wystem. 1 Convert 111 011 110 frorn binary to octal. 2 Convert 63 from octal to binary. 3. Convert a15a from hexadecimalto base 2 4. Convert 625 from base 16 to base 2 5. Convert 1101 0000 from base 2 to decimal 6. Convert 64 from octal to base 2 7. Convert 157 from base 10 to binary. 8. Convert 0011 1010 1000 0000 from base...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT