Question

Given the 16-bit binary string below for your starting point only, determine its value as requested....

Given the 16-bit binary string below for your starting point only, determine its value as requested.

Starting point 1: 0101 0110 1101 1000

0 0
Add a comment Improve this question Transcribed image text
Answer #1
Start at the rightmost digit. Take that digit and multiply with 20 (20 = 1). Multiple second digit with 21, third with 22...
0      *  2^0    =  0  *  1  =  0
0     *  2^1    =  0  *  2  =  0
0     *  2^2    =  0  *  4  =  0
1     *  2^3    =  1  *  8  =  8
1     *  2^4    =  1  *  16 =  16
0     *  2^5    =  0  *  32 =  0
1     *  2^6    =  1  *  64 =  64
1     *  2^7    =  1  *  128    =  128
0     *  2^8    =  0  *  256    =  0
1     *  2^9    =  1  *  512    =  512
1     *  2^10   =  1  *  1024   =  1024
0     *  2^11   =  0  *  2048   =  0
1     *  2^12   =  1  *  4096   =  4096
0     *  2^13   =  0  *  8192   =  0
1     *  2^14   =  1  *  16384  =  16384
0     *  2^15   =  0  *  16384  =  0

Add together all products
= 0 + 0 + 0 + 8 + 16 + 0 + 64 + 128 + 0 + 512 + 1024 + 0 + 4096 + 0 + 16384 + 0
= 22232

So, decimal value of 0101 0110 1101 1000 is 22232

Add a comment
Know the answer?
Add Answer to:
Given the 16-bit binary string below for your starting point only, determine its value as requested....
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
  • Convert each of the following 32 IEEE 754 single precision bit patterns to its corresponding decimal...

    Convert each of the following 32 IEEE 754 single precision bit patterns to its corresponding decimal value (the bits are separated into groups of 4 to make interpretation easier). Show all of your work and include a few comments as to what you are doing at each step. 1100 0100 1011 1010 0100 1000 0000 0000 a. b. 0100 0101 1110 0010 0110 1101 0000 0000 Convert each of the following 32 IEEE 754 single precision bit patterns to its...

  • We have learned a famous shift cipher called Caesar Cipher. Now if we are given a...

    We have learned a famous shift cipher called Caesar Cipher. Now if we are given a plain test: THE ART OF WARAnd key = 3 (a shift by 3 letters), please give the ciphertext Given an 8 bit block P = 10101111 and a key K = 01101011, please give the result of bitwise XOR between P and K Please give the left 2 shift of the 8 bit text 01100101 Use the given a permutation table 23614857 to define...

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

  • Implement a Java method named addBinary() that takes two String arguments (each representing a binary value)...

    Implement a Java method named addBinary() that takes two String arguments (each representing a binary value) and returns a new String corresponding to the result of performing binary addition on those arguments. Before you begin, if one of the arguments is shorter than the other, call your pad() method from the previous step to extend it to the desired length. Note: ped() method is public static String pad(String input, int size) { if(input.length()>=size) { return input; } String a =...

  • 4 UDP Checksum (20 pts) Suppose a sender that is to send a UDP datagram as given below. It is creating the checksu...

    4 UDP Checksum (20 pts) Suppose a sender that is to send a UDP datagram as given below. It is creating the checksum 0000 110 0000 0110 0000 1000 Checksum 1. Find the binary sum of the other four fields than checksum. (4 pts) 2. Wrap around the overflow and add to the least significant bit(s) if any. (4 pts) 3. Find the l's complement of the result of Problem 2. (2 pts) Suppose a receiver. Your answer of Problem...

  • please solve the question completely and show the steps ... thumb up will be given 1....

    please solve the question completely and show the steps ... thumb up will be given 1. (3 points each) [CO: 11 a. Perform the number conversion (2101)s -6 binary equivalent of the Gray code numbers listed below in ascending order, ie, b. List all 4-bit from smallest to largest. (Hint: Use the mirroring technique.) Gray-Code Straight Binary Equivalent 0001 0011 0010 0110 0111 0101 0100 1100 1101 Perform the following binary multiplication: c. (1031)4 (1031)4 Perform the following base-3 addition:...

  • I'm working on a java program where I'm supposed to convert 4 bit binary into decimal....

    I'm working on a java program where I'm supposed to convert 4 bit binary into decimal. I went with if statements and tried to use an else to print out an error message if the user enters a number that isn't a binary number but it prints no matter what. (so, it prints that it's a vowel and that it's not a vowel) 1 import java.util.Scanner; 2 3 public class HomeworkTwoQ2 4 { 5 6 public static void main(String[] args)...

  • 6. Convert .3710 to a binary fraction of 10 binary digits. 7. Use two's compliment arithmetic to perform the following 8 bit binary operations. a. 0010 1110 + 0001 1011 b. 0101 1101 – 0011 1010 c....

    6. Convert .3710 to a binary fraction of 10 binary digits. 7. Use two's compliment arithmetic to perform the following 8 bit binary operations. a. 0010 1110 + 0001 1011 b. 0101 1101 – 0011 1010 c. 1011 1000 – 1000 1011 d. 1000 1100 – 1111 0111 8. Convert 150.8476562510 to IEEE Floating Point Standard. 9. Simplify the following Boolean expressions. a. xy + xy + xz b. (w + x)(x + y)(w + x + y + z)...

  • 1 please IEEE-754 Floating point conversions problems (assume 32 bit machine): 1. For IEEE 754 single-precision...

    1 please IEEE-754 Floating point conversions problems (assume 32 bit machine): 1. For IEEE 754 single-precision floating point, write the hexadecimal representation for the following decimal values: a. 27.1015625 b.-1 2. For IEEE 754 single-precision floating point, what is the decimal number, whose hexadecimal representation is the following? a. 4280 0000 b. 7FE4 0000 c. 0061 0000 3. For IEEE-754 single-precision floating point practice the following problem: Suppose X and Y are representing single precision numbers as follows: X 0100...

  • Consider the two 16-bit words (shown in binary) below. Recall that to compute the Internet checksum...

    Consider the two 16-bit words (shown in binary) below. Recall that to compute the Internet checksum of a set of 16-bit words, we compute the one's complement sum of the two words. That is, we add the two numbers together, making sure that any carry into the 17th bit of this initial sum is added back into the 1's place of the resulting sum); we then take the one's complement of the result. Compute the Internet checksum value for these...

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