How many ways can we express string in Perl?
No Answer is Posted For this Question
Be the First to Post Answer
What is a hash?
6 Answers Photon, Satyam, Wipro,
What purpose does each of the following serve: -w, strict, - T ?
What is the closure in PERL?
Explain arrays in perl.
What is hash?
write a script to display mirror image of a entered value and also check whether Palindrome
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?
How to code in perl to implement the tail function in unix?
Comment on the scope of variables in perl.
Define perl scripting?
How to implement a stack in Perl?
What do the symbols $ @ and % mean when prefixing a variable?