Convert binary num into decimal 1100

11002

= 1(2^3) + 1(2^2) + 0(2^1) + 0(2^0)
= 8 + 4 + 0 + 0
= 12

To convert a binary number into its decimal equivalent, you can use the positional notation system. Each digit in a binary number represents a power of 2. To convert binary number 1100 to decimal, follow these steps:

1. Write down the binary number: 1100

2. Starting from the rightmost digit, assign a power of 2 to each digit, starting with 2^0.

2^0 = 1
2^1 = 2
2^2 = 4
2^3 = 8

3. Multiply each digit in the binary number by the corresponding power of 2 and add them together.

(1 * 2^3) + (1 * 2^2) + (0 * 2^1) + (0 * 2^0) = 8 + 4 + 0 + 0 = 12

Therefore, the decimal equivalent of the binary number 1100 is 12.