What is eval function in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Explain perl. When do you use perl for programming?
How to compare two strings 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?
Explain 'grep' function.
Explain join function in perl?
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
What are the advantages of c over Perl?
What is the use of 'ne' operator?
sort a word "system" in perl/shell without using built in functions output should be emssty
How to turn on Perl warnings? Why is that important?
Is perl compiler or interpreter?
How to merge two arrays in perl?