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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

Explain the default scope of variables in perl?

0 Answers  


Why does Perl not have overloaded functions?

0 Answers  


How can you call a subroutine and identify a subroutine?

0 Answers  


How to read from a pipeline with Perl

0 Answers  


What is 'commit' command in perl?

0 Answers  


What purpose does each of the following serve: -w, strict, - T ?

2 Answers  


Explain about typeglobs?

0 Answers  


What are the arguments and what do they mean in perl programming?

0 Answers  


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?

1 Answers   A1 Technology,


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

0 Answers  


What are the logical operators used for small scale operations?

0 Answers  


What does delete function do in perl?

0 Answers  


Categories