Local and global variables



Can someone explain the difference between
  use vars qw/$defined_by_vars/ ;
  our $defined_by_our ;
  $not_explicily_defined = 1 ;

Are these all global to the package they are defined it.
.