This example shows how global scope works in JavaScript. We declare a variable x globally with value 10. Then we define a function show() that prints x. When we call show(), it accesses the global x because no local x exists inside the function. The execution table traces each step: declaring x, defining show, calling show, accessing x inside show, and ending the function. The variable tracker shows x remains 10 throughout. Key moments clarify why show() prints 10 and what happens if a local x is declared. The quiz tests understanding of variable values and scope behavior. Remember, global variables are accessible everywhere unless shadowed by local variables.