Question 1(Multiple Choice Worth 5 points)
(04.01 MC)

Review the following code and select the response that is not a subroutine.

def calculate_price(item):
total = 0
total = item + 32.00
return total

def tips(price):
tips = price * 0.15
return tips

def add(item, item2, item3):
groceries = 0
for x in item:
groceries += 2.00
for y in item2:
groceries += 2.00
for z in item3:
groceries += 2.00
print(groceries)

def main():
veggies = ["tomatoes", "peppers"]
milk = ["almond", "goat"]
bread = ["sourdough"]
add(veggies, milk, bread)
return true

main()

A. calculate_price
B. main
C. print
D. tips

Question 2(Multiple Choice Worth 5 points)
(04.01 LC)

The following code prints out "beautiful world." We want it to say "hello beautiful world" instead. Which of the following needs to be changed to return the desired output?

def fun1():
print("hello")

def fun2():
print("beautiful")
print("world")

fun2()

A. The code for fun1() must be moved to after print("beautiful").
B. The code for fun1() must be moved to before print("beautiful").
C. The fun1() must be called after fun2().
D. The fun1() must be called before fun2().\

Question 3(Multiple Choice Worth 5 points)
(04.01 LC)

What is a function parameter?

A. A value passed into a function
B.A variable in the function definition
C. The range of values that can be passed into a function
D. The value a function returns

Question 4(Multiple Choice Worth 5 points)
(04.01 MC)

Select the correct line of missing code to output the words "hello" and "None."

x = ("hello")
def printfunction():
print(x)
def returnfunction():
return x
def main():
p = printfunction()
r = returnfunction()
/**missing code**/
main()

A. print(p)
B. print(r)
C. print(r,p)
D. return(r)

Question 5(Multiple Choice Worth 5 points)
(04.01 MC)

Which of the following is an example of a subroutine?

A. def pretty_print(x):
print("++++", x, "++++")
B. if x > 0:
s = ( "pos")
elif x < 0:
s = ("neg")
C. input("Enter your name: ")
D. return s