You want to print the contents of an entire array. 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

What is eval function in perl?

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,


How can you create an object of a class in a package?

4 Answers   IBM,


Comment on array slicing and range operator

0 Answers  


How to convert strings into an array in perl?

0 Answers  






write a script to generate n prime no.s?

2 Answers   Persistent,


What is the use of command “use strict”?

0 Answers  


What are the different ways to run cgi?

0 Answers  


What does this symbol mean '->'?

0 Answers  


What can be done for efficient parameter passing in perl?

0 Answers  


What do you mean by context of a subroutine?

0 Answers  


What does -> symbol indicates in Perl?

0 Answers  


Categories