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 |
What are perl variables?
What is confess function in perl?
If you want to empty an array then how would you do that?
Explain the execution of a program in perl.
Write a script to reverse a string without using perl's built in functions?
Why to use perl?
Why is it hard to call this function: sub y { "because" } ?
What is an interpolation in perl?
List all the features of perl programming?
What is the main function of cookie server?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
In Perl, what is grep function used for?