1.

Name All The Prefix Dereferencer In Perl?

Answer»

The SYMBOL that starts all SCALAR variables is called a prefix dereferencer. The different types of dereferencer are.
(i) $-Scalar variables
(ii) %-Hash variables
(iii) @-ARRAYS
(iv) &-subroutines
(v) Type globs-*MYVAR STANDS for @myvar, %myvar.

The symbol that starts all scalar variables is called a prefix dereferencer. The different types of dereferencer are.
(i) $-Scalar variables
(ii) %-Hash variables
(iii) @-arrays
(iv) &-subroutines
(v) Type globs-*myvar stands for @myvar, %myvar.



Discussion

No Comment Found