ljkqq3683 ljkqq3683 28-09-2022 Mathematics Answered What is the value of test_val after the following code is executed? a = 12 test_val = 6 if a * 2 == test_val: a = a 7 else: test_val = 2 * a test_val = a 1