What is confess function in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What is a hash?
6 Answers Photon, Satyam, Wipro,
Write a simple regular expression to match an IP address, e-mail address, city-state-zipcode combination.
“Perl regular expressions match the longest string possible”. What is the name of this match?
How do I print the entire contents of an array with Perl?
Write syntax to use grep function?
What is the purpose of goto expr statement?
Explain returning values from subroutines?
What are the various file operations in perl. Explain with example.
Which has the highest precedence, List or Terms? Explain?
Why to use perl?
What does file test operators do in perl?
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?