Question: Let's start with easy things first.What will the following code produce?

a = 2
a = 4
a = 6
print(a +a +a)

Hint:Pythonreads and executesscripts from top to bottom.