The answer is the first one
Answer:
it looks great! i'd give you an a+
honestly I couldn't make that
Answer:
16
Step-by-step explanation:
First, we plug in -3 in place of x...
f(x) = 2(-3)^2 + (-3) + 1
Then, we simplify each indidvidual expression...
f(x) = 18 - 3 + 1
Finally, we add/subtract all the values to get our answer...
f(x) = 16
Ok so I'll demonstrate in programming language python.
import math
def circle():
r = float(input("Enter r: "))
a = math.pi * r ** 2
print("Area of circle with r = {0} is {1
}cm2".format(str(r), str(a))
circle()