Question: From where is the variable `myVar` accessible if it is declared outside of any functions in a file in package `myPackage` located inside module `myModule`?
- It can be accessed anywhere inside `myPackage`, not the rest of myModule.
- It can be accessed by any application that imports `myModule`.
- It can be accessed from anywhere in `myModule`.
- It can be accessed by other packages in `myModule` as long as they import `myPackage`
Answer: The correct answer of the above question is Option A:It can be accessed anywhere inside `myPackage`, not the rest of myModule.