Type your answer here... 0111010answer right is a) Group 111010 into two groups as 111 and 010 then convert each group into octal like 111=7 and 010=2. So the octal equivalent of 111010 will be 72. congrulation both are right
Break the Binary number into 3 bit sections from the LSB to the MSB(Right hand site). Then convert the 3 bit binary number to its octal equivalent(Multiply each 3 bit to 2^0 to 2^2). E.g. If the binary value is 1010111110110010 then 001 would be 1, 010 would be 2, 111 would be 7, 110 would be 6, 010 would be 2, etc.
Multiply the base by square root of 10 to the 4th power then divide by 2! (factorial) times 10!
An octal number is a number that uses base-eight notation instead of base-ten. This means that instead of having the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9, it only uses the digits 0, 1, 2, 3, 4, 5, 6, and 7. The digits 8 and nine are not used. This doesn't mean that those numbers can't be expressed though, it simply means that they are expressed differently. In octal, the value eight would be expressed as "10" and the value nine as "11".
I would convert to base 10 , multiply and then convert back to base 6. 35 base 6 is 3 * 6 + 5 = 23 in base ten. 4 * 23 = 92 which is 2*36 + 3* 6 + 2 , in base 6 , the answer is 232 .
B5 in base 16.
Assuming the original is in binary, you group the digits in threes (from the right). This is similar to the use of comma separators between billions, and millions and thousands in decimal numbers.So 100010001111 = 100,010,001,111Now, convert each triplet into its octal equivalent using the following table:000 = 0 001 = 1 010 = 2 011 = 3100 = 4 101 = 5 110 = 6 111 = 7Thus the original number, converted to octal, is 4217.
1010 0001 base 2 161 base 10
Decimal is base 10. Binary is base 2. Octal is base 8. Hexadecimal is base 16.
Convert every octal digit into three binary digit: 0->000 1->001 2->010 3->011 4->100 5->101 6->110 7->111
To convert a binary number to an octal number, you need to know how an octal number is represented in binary. It is like this: 0 = 000 4 = 100 1 = 001 5 = 101 2 = 010 6 = 110 3 = 011 7 = 111 As you can see, an octal number consists of 3 'bits' (either a 0 of a 1). Now, to convert a binary number to an octal number, you first have to group the binary digits into groups of 3 bits (starting from the right). Then, you convert every group of bits into octal numbers. This way you get your binary number into an octal one. For example: (1010100111010010)2 We group them into groups of 3 bits, starting from the right. 1 010 100 111 010 010 As you see, we have a single digit left. We must add 0's to make it a group of 3 bits. 001 010 100 111 010 010 Then we convert every group into an octal number, according to the table above. 001 = 1 010 = 2 100 = 4 111 = 7 010 = 2 010 = 2 And in this way, you converted a binary number into an octal one. (1010100111010010)2 = (124722)8
Convert each "digit" of the octal into a triplet of binary digits, according to the following rule: Octal Binary 0 000 1 001 2 010 3 011 4 100 5 101 6 110 7 111 So, for example, octal 53 = binary 101 011 [= decimal 43]
You convert numbers from any base to any other base by successive division by the target base, using the rules of division in the source base, while tracking each remainder until the result is zero. To convert from hex to octal, you successively divide by 8. Just do it in hex, not decimal. An example to convert 9C16 to 2358... 9C16 divided by 816 is 1316 remainder 516 1316 divided by 816 is 216 remainder 316 216 divided by 816 is 016 remainder 216 Write the remainders down in reverse order, 2, 3, 5, or 2358. I find it easier to convert to binary first and then convert the binary to octal. To do this, convert each hex digit to binary. Then starting at the right split the binary digits into groups of three, adding 0's at the end if needed. Each group of three converts to an octal digit. Example: A B F 2 = 1010 1011 1111 0010 = 001 010 101 111 110 010 (group by threes and add two 0's at the front) = 1 2 5 7 6 2 The trick of converting the digits works because 8 and 16 are both powers of two.
Type your answer here... 0111010answer right is a) Group 111010 into two groups as 111 and 010 then convert each group into octal like 111=7 and 010=2. So the octal equivalent of 111010 will be 72. congrulation both are right
0.256 = 2*8-1 + 3*8-3 + 4*8-5 + 4*8-5 + 6*8-6 + ... = 0.203045 (Base 8), approx
The conversion of octal number to binary can be obtained by using two methods. First, it can be converted into decimal and then obtained decimal is converted into binary. In the second method
You can use the Windows calculator to do the conversions. If you want to learn how to do it yourself:To convert binary to decimal, multiply the right-most digit with 1, the second digit (from the right) with 2, the third with 4, etc.To convert to octal, group the bits from the right to the left, in groups of 3. Convert each group to a decimal digit.