Multiple choice technology programming languages

What type of variable is INPUT?

  1. A File Handle

  2. A List

  3. A Code variable

  4. A Tyleglob

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

INPUT in Perl is conventionally used as a file handle name (all uppercase identifiers typically indicate file handles). File handles are used for input/output operations with files, pipes, or sockets. This follows Perl's naming convention where uppercase names are reserved for file handles like STDIN, STDOUT, etc.