What are the characteristics of a project that is well
suited to Perl?



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

Post New Answer

More CGI Perl Interview Questions

Can inheritance be used in perl? Explain with the help of an example.

0 Answers  


How will you open a file in a write-only mode in perl?

0 Answers  


Explain what is the scalar data and scalar variables in Perl?

0 Answers  


How to connect to SQL server through Perl?

0 Answers  


What is the difference between $array[1] and @array[1]?

1 Answers  






What is the syntax used in Perl grep function?

0 Answers  


Comment on the scope of variables in perl.

0 Answers  


Explain use of ‘my’ keyword in perl?

0 Answers  


Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.

2 Answers  


How to make the following assignment, as arrayreference assignment ? my $arr_ref='[1,2,3,4,4,'elem']';

2 Answers  


What are the logical operators used for small scale operations?

0 Answers  


What is the purpose of “_file_ literal” and “_line_ literal” in perl?

0 Answers  


Categories