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 |
Explain lists ?
how to connect cisco switch uisng perl script
List all the features of perl programming?
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?
How can you create an object of a class in a package?
What are the various flags/arguments that can be used while executing a perl program?
How do I generate a list of all .html files in a directory?
I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl
What happens in dereferencing?
What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?
How can you create anonymous subroutines?
What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?