What arguments do you frequently use for the Perl
interpreter and what do they mean?
Answers were Sorted based on User's Feedback
Answer / vipul dalwala
Mainly we are using -w argument for perl interpreter. That
means you are turning on warning messages.
| Is This Answer Correct ? | 14 Yes | 5 No |
Answer / sandeep kumar mall
Hi The various command line arguments are -e executes the
prog given as an argument-d start perl debugger on the file
name specified as an argument-c compile the file given as an
argument
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / jamal
-w Which show warning
-d Which debug
-c Which compile only not run
-e Which executes
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sanjay garothaya
-w to show warning
-d to debug
-c to compile only not run
we can also use combination of these like
-wd
| Is This Answer Correct ? | 4 Yes | 0 No |
Explain string comparison operators in perl.
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
What is the difference between single (') and double (") quote in a string in perl?
How many types of primary data structures in Perl and what do they mean?
How to sort dates in Perl ?
How will you open a file in read-only mode in perl?
What are the two ways to get private values inside a subroutine?
In CPAN module, name an instance you use.
Why Perl aliases are considered to be faster than references?
Write syntax to add two arrays together in perl?
What are the various flags/arguments that can be used while executing a perl program?
Explain the different types of data perl can handle.