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.
1.

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
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 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 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...
I need the following problems worked out (show work). Thee answers are provided, I just need the work explained briefly for each one. 4 - What is the decimal representation of each of the following unsigned binary integers? a. 00110101 (53) b. 10010110 (150) c. 11001100 (204) 6 - What is the sum of each pair of binary numbers? a. 10101111 + 11011011 (110001010) b. 10010111 + 11111111 (110010110) c. 01110101 + 10101100 (100100001) 8 - How many bits are...
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 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...
Unsigned representation vs. 2's complement Order the next two sequences of numbers in ascending order twice. First, assume that the numbers are written in 8-bit unsigned and then in 8-bit 2's complement representation. Remember the different notations for binary, decimal and hexadecimal numbers. 0111 1100, 0101 1010, xDD, xEA x71, x8B, 1001 0110, 0110 1001
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. 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 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...