Variables defined inside functions can have global scope.
False
Reason — Variables defined inside functions have only local scope. This means that they are only accessible within the function in which they are defined.