What will be the output of the following code snippet? If th…
What will be the output of the following code snippet? If the program results in an error, put down ‘ERROR’. def process_numbers(operation, *values): result = 10 for val in values: result *= val print(f”{operation(result)}”)def calculate(x): return x // 3process_numbers(calculate, 2, 1, 3, 1)