Perl Programming Question:
Download Job Interview Questions and Answers PDF
Why do you use Perl?
Answers:
Answer #1* Perl is a powerful free interpreter.
* Perl is portable, flexible and easy to learn.
* Perl is portable, flexible and easy to learn.
Answer #2perl is generally more powerful and efficient than shells. It is designed for a different purpose (pattern extraction and reporting, hence its name). Shells are designed both for scripting and for running commands interactively. Shells require many other subcommands (grep, sed, awk, tr, cat, ls, find, etc...) to perform various tasks, whereas perl can do all of this itself, which means it doesn't have to fork() subprocesses. It has advanced data structure support (multi-subscripted arrays, hashes, etc.), which shells generally don't.
I generally do small jobs in shell, medium jobs in awk, and bigger jobs in perl.
I generally do small jobs in shell, medium jobs in awk, and bigger jobs in perl.
Download Perl Programming Interview Questions And Answers
PDF
Previous Question | Next Question |
How do I set environment variables in Perl programs? | How do you give functions private variables that retain their values between calls? |