Algorithm correct answers A description of how to solve a problem. A set up steps to solve a
problem.
describe an algorithm using flow charts correct answers Don't stress! Flow charts are almost
exactly like normal instructions, but you have to phrase them in ways or depict them in ways that
suggest how a computer may process the instructions.
Binary system correct answers The binary number system is base 2, using only bits 0 and 1.
Data Types correct answers A way to encode some type of data some computers can manipulate
it- using binary numbers.
decimal system correct answers system of numbers based on 10. basically each numeric position
increases by a power of 10.
Hexadecimal Number System correct answers a base-16 system, consisting of the 16 symbols 0
through 9 and A through F.
int correct answers A native type representing the integers, which are positive whole numbers
and their opposites.
float correct answers A native type representing rational numbers to limited precision.
bool correct answers A variable whose value can be either true or false is of this data type.
str correct answers A Python data type that holds a string of characters.
Expressions correct answers expressions always evaluate to a value. pieces of code that produce
a value. Computers take in expressions and convert them into data the computer can understand,