👉 In programming, a "scoped variable" refers to a variable that is defined within a function or other expression but is not accessible outside of that scope. This means that the value of the scoped variable cannot be accessed from outside the specified function or expression. For example: ```python # Define a variable in a function def my_function(): x = 10 # Accessing a scoped variable print(my_function.x) # Output: 10 ``` In this