This data type stores whole numbers without fractional or decimal parts.
What is an int?
In the expression 5 + 3, the numbers 5 and 3 are examples of this.
What are operands?
This is the base of the binary number system.
What is base 2?
This is the base of the hexadecimal number system.
What is base 16?
This logic gate returns 1 only when both inputs are 1.
What is an AND gate?
This data type stores a value that is either True or False.
What is a bool?
In the expression x * y, the asterisk (*) is this.
What is an operator?
Binary 101 equals this in decimal.
What is 5?
Decimal 15 equals this in hexadecimal.
What is F?
This logic gate returns 0 only when both inputs are 0.
What is an OR gate?
lists, strings, ints, floats, and bools are all examples of _____ _____
What is a data type?
This is a word for a trillion bytes.
What is a terabyte?
This is the number of bits in a byte.
What is 8?
Binary 1010 equals this in hexadecimal.
What is A?
![]()
What is an XOR gate?
You would use this data type to store the price of an item like $19.99
What is a float?
A set of instructions that control the operations or functions of a computer.
What is a program?
This is the smallest unit of data in a computer.
What is a bit?
Binary 11111111 equals this in hexadecimal.
What is FF?

What is a NAND gate?
An immutable ordered sequence of Unicode characters that cannot be changed once created and maintains the order of its characters (used for textual data).
What is a string?
A person or device that makes calculations, stores data, and executes instructions according to a program.
What is a computer?
Binary 01000110 equals this in decimal.
What is 70?
You need this many hexadecimal digits to represent two bytes.
What is/are four(hexadecimal digits)?
This circuit functions the same as this gate with only one input.
What is the NOT gate?(or INVERTER)