Who created perl?


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 `$result = f() .. g()' really return?

0 Answers  


What is the difference between localtime() and gmtime() functions?

0 Answers  


What are the two ways to get private values inside a subroutine?

0 Answers  


What is the difference between chop & chomp functions in perl?

10 Answers   Cap Gemini, DELL, Electronic Data, TCS,






Which has highest precedence in between list and terms? Explain?

0 Answers  


You want to empty an array. How would you do that?

0 Answers  


Explain the execution of a program in perl.

0 Answers  


What is the peculiarity of returning values by subroutines 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?

2 Answers  


What is 'commit' command in perl?

0 Answers  


what are the two ways to get private values inside a subroutine or block?

0 Answers  


Categories