cocoarelys8211 cocoarelys8211 08-04-2024 Computers and Technology contestada What will be displayed by the following code? #Start of Code def f(value, values): V = 1 values[0] = 44 #End of function t = 3 v = [1, 2, 3] f(t, v) print(t, v[0]) #end of code a. 1 44 b. 11c. 3 44 d. 31