Google News
logo
Perl - Quiz(MCQ)
Which statement is used to enable strict mode in Perl?
A)
Use strict;
B)
Strict mode;
C)
Use strict mode;
D)
None of the above

Correct Answer :   use strict;


Explanation :

The syntax to enable strict mode in Perl is : Use strict

Advertisement