decimal octal binary logic gates Quiz

easy 5 Questions
Back
Question 1 of 5

What is the decimal equivalent of the binary number 1011?

1*2^3 + 0*2^2 + 1*2^1 + 1*2^0 = 8 + 0 + 2 + 1 = 11
Question 2 of 5

What is the binary representation of the decimal number 8?

8 = 1*2^3 + 0*2^2 + 0*2^1 + 0*2^0 = 1000
Question 3 of 5

Which logic gate produces a HIGH output only when all inputs are HIGH?

An AND gate requires all inputs to be high for a high output.
Question 4 of 5

Convert the octal number 23 to binary.

2 in octal is 010 in binary, and 3 in octal is 011 in binary; hence 010 011 -> 10011
Question 5 of 5

Which gate is equivalent to an AND gate followed by a NOT gate?

A NAND gate is the inverted output of an AND gate.
1 / 5