How do I debug a perl program?


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

Post New Answer

More CGI Perl Interview Questions

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,


What does the qq{ } operator do?

0 Answers  


how to find a substring in a string without using substr built in functions, and print the substring found

3 Answers   Nokia,


Explain returning values from subroutines?

0 Answers  


What is the importance of perl warnings? How do you turn them on?

0 Answers  






How will you access an element of a perl array?

0 Answers  


“Perl regular expressions match the longest string possible”. What is the name of this match?

0 Answers  


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

0 Answers  


Suppose an array contains @arraycontent=(‘ab’, ‘cd’, ‘ef’, ‘gh’). How to print all the contents of the given array?

0 Answers  


What is the difference between module and package?

4 Answers   EDS, IBM, Symantec,


Explain the meaning of closure in perl.

0 Answers  


What is the difference between use and require in perl?

0 Answers  


Categories