What are the characteristics of a project that is well
suited to Perl?
Answer / rajesh muppala
Here are my views
1.The Project should be an internal client but not mandatory
2.Minimal number of users can hit because of performance
issues
3.If the Project is dealing with many number of emails
sending
4.To develop faster and kick it off
| Is This Answer Correct ? | 3 Yes | 7 No |
How do find the length of an array?
Perl regular expressions are greedy" what does this mean?
What are the logical operators used for small scale operations? Explain them briefly.
Explain subroutine in perl?
Explain the different types of data perl can handle.
What does the command "use strict" do and why should you use it?
What is Perl?
Why do you use Perl?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
What is perl? What is the basic command to print a string in perl?
How do I generate a list of all .html files in a directory?
How many types of variable in perl?