xxknockoutxx1198 xxknockoutxx1198 04-03-2024 Computers and Technology contestada What will be printed when the program below is run?def add_two(x):return x + 2def multiply_by_three(x):return x * 3def my_function(x):return add_two(x) + multiply_by_three(x)print my_function(12)A) 42B) 38C) 36D) Error