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 chomp?
Comment on array slicing and range operator
sort a word "system" in perl/shell without using built in functions output should be emssty
How would you replace a char in string and how do you store the number of replacements?
How do I sort a hash by the hash value?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
What are the logical operators used for small scale operations? Explain them briefly.
How would you trap error occurred in the perl program/file?
How can you define “my” variables scope in Perl and how it is different from “local” variable scope?
How can arrays be tied?
Hi, I am a accountant. I am preparing a balance sheet but because of staff shortage and time pressures I cant complete it on time. There is lot of common data with last years which I need not retype and I can manage by editing last year’s balance sheet ? Is their any software on net where I can do this easily??
Explain the functioning of conditional structures in perl.