What are some common methods to all handles in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Why to use perl?
What is stdin in perl?
What is warn function 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?
What are hashes?
What's the difference between /^Foo/s and /^Foo/?
Which has the highest precedence, List or Terms? Explain?
What does 'do' statement do in perl?
Which feature of perl provides code reusability?
Explain the difference between die and exit in perl?
What are the advantages and disadvantages of perl language?
Differentiate between use and require, my and local, for and foreach and exec and system