When would you not use Perl for a project?



When would you not use Perl for a project?..

Answer / mac

1. When you are developing an application for a real time
system in which processing speed is of utmost importnace

When to use Perl
1. For large text processing
2. When application does lot of data manipulation
3. When you need fast development
4. For database loading operations
5. When shell scrits grow to become libraries

Is This Answer Correct ?    9 Yes 4 No

Post New Answer

More CGI Perl Interview Questions

Is perl compiler or interpreter?

0 Answers  


How to do comment in perl?

0 Answers  


what is the procedure to define a user define module in your perl application?

2 Answers   IBM,


How can the user execute a long command repeatedly without typing it again and again?

0 Answers  


Who created perl?

0 Answers  






Where the command line arguments are stored and if you want to read command-line arguments with Perl, how would you do that?

0 Answers  


Which functions in perl allows you to include a module file.

0 Answers  


List the files in current directory sorted by size ?

0 Answers  


How to concatenate strings with perl?

0 Answers  


What is the difference between single (') and double (") quote in a string in perl?

0 Answers  


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 ?

1 Answers  


what is the difference between java and cgi?

0 Answers  


Categories