in reply to what module gets loaded with perl program by default ?

If you want to know what modules have been loaded, then inspect the %INC hash (see perlvar).

Perl builtins which manipulate an array belong to a pseudo namespace called CORE, see CORE.

Actually there are not that many functions that manipulate an array (push,pop,shift,unshift,splice), most work on a list.
  • Comment on Re: what module gets loaded with perl program by default ?