How to read file into hash array ?
No Answer is Posted For this Question
Be the First to Post Answer
How to dereference a reference?
Why aren't Perl's patterns regular expressions?
What are the logical operators used for small scale operations? Explain them briefly.
What does redo statement do in perl?
How to turn on Perl warnings? Why is that important?
How do you match one letter in the current locale?
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?
What does the q{ } operator do?
What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?
What does read () command do?
Explain lists and ivalue?
What is perl scripting?