Which line can be used instead of the comment to cause the snippet to produce the following expected output? (Choose two.) Expected output: 1 2 3 Code:

Select an option, then click Submit answer.
Reference / correct answer:
Most accepted answer: A. c, b, a = b, a, c
Community votes: A=1, C=1
Ans : C c,b,a=1,3,2 a,b,c=c,a,b print(a,b,c) upvoted 1 times
AC is correct. upvoted 1 times
Selected Answer: AC A. c, b, a = b, a, c C. a, b, c = c, a, b upvoted 1 times
Answer is correct upvoted 3 times
All of them are wrong. c, b, a = b, a, c gives 1 3 2 c, b, a = a, c, b gives 2 1 3 a, b, c = c, a, b gives 1 3 2 a, b, c = a, b, c gives 3 2 1 The correct answer should be something like this a, b, c = c, b, a which gives 1 2 3 upvoted 2 times techdawgs 4 years, 8 months ago A & C are correct. The variables on the right of '=' are the original values and the variables on the left are the new values. upvoted 4 times ...