answersLogoWhite

0


Best Answer

trivial.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Show that 8's complement octal and 2's complement binary are exactly equivalent.?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you write a C program to convert a binary value to its octal equivalent?

To convert from binary to octal, bitwise AND the binary value with 0x8 (00000111 in binary) and push the value onto a stack. Right-shift (>>) the binary value by 3 bits and repeat until the binary value is zero. Pop the stack to build the left-to-right digits of the octal value. Using 10110100 as an example: 10110100 & 00000111 = 00000100 10110100 >> 3 = 00010110 00010110 & 00000111 = 00000110 00010110 >> 3 = 00000010 00000010 & 00000111 = 00000010 00000010 >> 3 = 00000000 Popping the values in order reveals 00000010, 00000110 and 00000100 (decimal 2, 6 and 4 respectively). Thus 10110100 binary is 0264 octal.


How convert octal to binary?

If necessary, pad the value with zeroes so the number of bits is an exact multiple of 3. Then divide the binary value into groups of 3 bits. Convert each group to its corresponding octal digit as follows: Bin = Oct 000 = 0 001 = 1 010 = 2 011 = 3 100 = 4 101 = 5 110 = 6 111 = 7 Example 1: 16-bit value: 1011101101100011 3-bit groupings: (00)1 011 101 101 100 011 Octal digits: 1 3 5 4 3 Octal value: 13543 Example 2: 24-bit value: 010111011010010101011010 3-bit groupings: 010 111 011 010 010 101 011 010 Octal digits: 2 7 3 2 2 5 3 2 Octal value: 27322532


Conversion of binary to octal?

Binary is a base 2 number system, while octal is base 8. This happens to make conversion between binary and octal fairly trivial, although more complex than conversion to hexadecimal. To convert to octal from binary, take each three bits, starting from the least significant bit, and convert them to their octal equivalent. Examples: 25510 = 111111112 = 11 111 111 = 3778 17410 = 101011102 = 10 101 110 = 2568 You can repeat this process for as many bits as you need. A 24-bit number should translate into 8 octal numbers, for reference.


What are the values of each bit contributing to the value of the number in octal number system?

Each octal digit is represented exactly by 3 bits: 0 = 000 1 = 001 2 = 010 3 = 011 4 = 100 5 = 101 6 = 110 7 = 111 Using the normal binary representation of the number. With a string of octal digits, each digit is the next 3 bits, for example the octal number 04751 is: 04751 = 000 100 111 101 001 in binary The spaces are for ease of reading, showing each octal digit in binary; without any spacing it becomes: 000100111101001 By changing the spacing to: 000 1001 1110 1001 means it can be easily read in hexadecimal as 0x09e9.


How do you convert octal digits into three binary digits?

C++ does not support octal encoding within source code (only decimal and hexadecimal are supported), so the octal must be represented with a string. The binary output must also be a string. Every octal digit represents three bits of binary, thus the binary output string will always be three times the length of the octal input string. The loop will begin with the octal character at index 0 and work through each character from left to right. On each iteration, the binary output string will be appended with a 3-character string, as follows: octal = binary "0" = "000" "1" = "001" "2" = "010" "3" = "011" "4" = "100" "5" = "101" "6" = "110" "7" = "111" Thus octal input "437" will begin with the "4" producing an output of "100". On the next iteration, "3" will append "011" to produce "100011". On the final iteration, "7" will append "111" to produce "100011111".

Related questions

What is the binary equivalent of the octal number 76?

Octal 76 = 111110


Convert the decimal numbers 1987 to binary then to octal?

In binary this number is equivalent to 11111000011 while in octal it is 3703


What is the binary equivalent of the octal 17?

1111


What is the octal equivalent for the binary number 100?

4


What is the octal equivalent of the binary number 101001?

51


The octal equivalent of the binary number 11010111 is?

327


Why should one study octal and Hexadecimal systems when the digital machine understands only binary system?

Octal and hexadecimal numbers are useful for humans as they compactly represent binary numbers:each octal digit represents exactly 3 binary digitseach hexadecimal number represents exactly 4 binary digitsFor example, instead of trying to read (and remember) the binary number 100111001001 it can be represented as hexadecimal 0x09c9 or octal 04711 which are easier to read (and remember) for humans.


Convert the hexadecimal number ABCDEF to octal and binary?

Octal = 52746757 Binary = 101010111100110111101111


How do you convert 1470 octal to binary?

1470 octal = 001 100 111 000 binary


The number FF in Hexadecimal system is equivalent to?

255 in decimal. 377 in octal. 11111111 in binary.


Is 75 an octal number?

Yes. The hex equivalent is 3D and the binary is 111101. The decimal is 61.


What is the binary equivalent hexa number of AB5D base 16?

The binary equivalent would be... 1010101101011101 - There is a multi-functional calculator built-in to Windows which can covert numbers between Hex, Decimal, Octal and Binary.