Solved

Which of the Following Is Not a Valid Use of Function

Question 7

Multiple Choice

Which of the following is not a valid use of function maxmin?


A) result = maxmin([20, 5, 30, 45, 60, 15])
B) result = maxmin([max(num_list1) , max(num_list2) ])
C) result = maxmin([max(num_list1) , max(num_list2) , max(num_list3) ])
D) largest, smallest = maxmin(num_list)
E) if maxmin(num_list) > 100:
Print('Largest value above 100')

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions