saymaa681 saymaa681 05-01-2023 Computers and Technology contestada For Questions 1-4, consider the following code: def mystery(w, n): if (n>5): return w.upper() else: return w.lower() The following line of code will output the string in lower case. print(mystery("bye"), 0) Group of answer choices -True -False