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`?

  1. It can be accessed anywhere inside `myPackage`, not the rest of myModule.
  2. It can be accessed by any application that imports `myModule`.
  3. It can be accessed from anywhere in `myModule`.
  4. 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.