Symbol table is a PERL structure which contains the identifier names(like 'variable'). The identifier became actual variable ($variable,@variable etc) type when it associate through typeglob.Symbol table contains only global variables.
The symbol table is the list of active symbols (functions, variables, objects) within a package. Each package has its own symbol table, and with some exceptions, all the identifiers starting with lett...