Why we use CGI?
No Answer is Posted For this Question
Be the First to Post Answer
What is warn function in perl?
Explain goto expr?
Explain about the applications of perl?
How to count no of occurrence of a unique patterns in perl?
Explain splicing of arrays?
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?
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
What is the usage of -i and 0s options?
What is the use of "stderr()"?
What is the use of –w?
What happens in dereferencing?
List the files in current directory sorted by size ?