100% correct answers (6)
Code - correct answer ✔✔set on instructions you can give to a computer to make it perform a desired
task
program - correct answer ✔✔complete piece of code that can be run for a desired purpose
algorithm - correct answer ✔✔sequence of defined, computer-implementable instructions to perform a
calculation or solve a problem
input - correct answer ✔✔returns the user's entry as a string to be assigned to a variable
strings - correct answer ✔✔fundamental data types (the other type is a number)
int - correct answer ✔✔integer (whole number)
float - correct answer ✔✔floating point number (decimal points)
string - correct answer ✔✔you can't concatenate a ___________ with an int or float, or do math with
_____
PEMDAS - correct answer ✔✔python uses ______ to determine the order of operators
round(number[, ndigits]) - correct answer ✔✔Display the floating point numbers in a dollar and cents
format
ceil - correct answer ✔✔rounds to the highest integer
, trunc - correct answer ✔✔truncates a number to the specified number of decimal places by removing
digits of lesser precision
floor - correct answer ✔✔rounds down to the next lower integer
addition - correct answer ✔✔with integers and floats, + means...
concatenation - correct answer ✔✔with strings + means...
use functions int() and float() - correct answer ✔✔How to avoid adding strings with numbers
* - correct answer ✔✔For strings, _____ does not mean multiplication. It replicates the string the
number of times specified
F= I(1 + r)^t - correct answer ✔✔what is the future value of an investment formula?
rate - correct answer ✔✔denotes how a quantity changes with respect to another quantity
simple interest - correct answer ✔✔multiply the interest by the amount of time you hold the investment
compound interest - correct answer ✔✔earns interest on interest
annual rate/ 12 - correct answer ✔✔How to get monthly rate?
0.08 - correct answer ✔✔How to enter 8% in Python?
future_value = init_value * ((1.0 + rate_of_return) ** num_years) - correct answer ✔✔Future
investment formula in Python