Multiple choice technology programming languages

Perl Variables can declared in lexical scope.

  1. True

  2. False

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

Perl supports lexical scoping through the 'my' keyword, which declares variables with lexical scope limited to their block. This is a fundamental feature of modern Perl. The statement is TRUE, so A is correct.