CBSE Class 11 Informatics Practices
Question 73 of 102
Python Programming Fundamentals — Question 34
Back to all questions2 3 6
2 3 6
first = 2⇒firstis assigned the value 2.second = 3⇒secondis assigned the value 3.third = first * second⇒thirdis calculated asfirst * second, which is 2 * 3 = 6.print(first, second, third)⇒ The print statement outputs 2 3 6, showing the values offirst,second, andthird.third = second * first⇒thirdis reassigned withsecond * first, which is 3 * 2 = 6.print(first, second, third)⇒ The second print statement outputs 2 3 6 again, reflecting the updated value ofthird.