How does a “grep” function perform?


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

Post New Answer

More CGI Perl Interview Questions

What is perl dbi?

0 Answers  


How to access parameters passed to a subroutine in perl?

0 Answers  


How to convert arrays into a string in perl?

0 Answers  


What rules must be followed by modules in perl.

0 Answers  


What is eval function in perl?

0 Answers  






Differentiate between c++ and perl.

0 Answers  


Explain the difference between die and exit in perl?

0 Answers  


How do you set environment variables in perl?

0 Answers  


Mention what is cpan?

0 Answers  


Explain perl. What are the advantages of programming in perl?

0 Answers  


How can you create anonymous subroutines?

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?

2 Answers  


Categories