Answer:
Is there more to the question? But I have had this question already and the answer is B)
Cat Quest possibly? How long ago? i remember playing many. I LOVE CATS.
Answer:
a group of instructions that can be used to organize a program or perform a repeated task
Explanation:
A function is a group of commands that can be called upon with extra parameters if needed.
Example:
def foo(): #defining this function and naming it foo
return True #what is performed when foo is called on
if foo() == True: #foo() is calling on a function named foo
print('yes')