What is confess function in 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 are perl variables?

0 Answers  


Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.

2 Answers  


What is perl I used for?

0 Answers  


Does Perl have objects? If yes, then does it force you to use objects? If no, then why?

0 Answers  






How can you call a subroutine and identify a subroutine?

0 Answers  


How to convert arrays into a string in perl?

0 Answers  


What does 'do' statement do in perl?

0 Answers  


Explain a tell function in perl?

0 Answers  


How to connect to SQL server through Perl?

0 Answers  


In Perl, what is grep function used for?

0 Answers  


Explain ivalue?

0 Answers  


Categories