Multiple choice perl

PERL is

  1. Procedural

  2. OOPs

  3. Both

  4. None

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

Perl is a versatile programming language that supports both procedural programming (scripts with subroutines and control flow) and object-oriented programming (creating objects, classes, and using inheritance). While Perl was originally procedural, Perl 5 introduced full OOP support with packages, bless operator, and method invocation. The 'Both' option correctly captures Perl's dual nature.