10110
Chat with our AI personalities
10110
00010110 = 22
An ancient method of converting decimal numbers to binary form is to halve the number until 1 is reached. When halving an odd number round down to the number below (13 halved = 61/2 round down to 6). If the number is even then record a 0, if the number is odd then record a 1. 22 ................is even .......0 22 ÷ 2 = 11..is odd..........1 11 ÷ 2 = 5....is odd..........1 5 ÷ 2 = 2......is even........0 2 ÷ 2 = 1......is odd..........1 The binary equivalent of 22 is therefore 10110
It is a number system that uses the digits 0 and 1 only. So 0 is written 0 and 1 is 1, but two in base 10 is written 10 in binary. The first digit is 20 or 1, the next is 21 or 2, the next digits is 22 This keeps going and any number can be written in binary or base two.
5 multiplied by 2 is 10Answer:Consider the joke: There are 10 kinds of people in the world those who understand binary and those that don't.Binary uses powers of 2 to express numbers. Thus 20=1,21=2, 22=4 and so on (numbers shown in decimal). This is expressed as strings of numbers using either 0 or 1. Thus 0(binary) =0 (deciamal). 1(Binary)=1 (decimal) or 20, 10(binary)=2(decimal) or 21, 11=3 (decimal) =10+1(binary) = 21+20 and so on.