Multiple choice technology programming languages

A Hash variable in perl is preceded by a

  1. $
  2. %

  3. #

  4. @

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Perl, hash variables (associative arrays) are prefixed with the percent sign (%). Scalars use $, arrays use @, and # is used for comments. This sigil system immediately indicates the variable type.