Q. What is the correct syntax for creating a new object in Perl?
β
Correct Answer: (C)
my object_name = new class_name()
Explanation: The correct syntax for creating an object in Perl is:
my object_name = new class_name()