How do I debug a perl program?
What is the Common Gateway Interface?
Differentiate between use and require, my and local, for and foreach and exec and system
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 a tell function in perl?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
What is the difference between $array[1] and @array[1]?
Which web site will help the student to download the Java mini Project ?
Explain the difference between my and local?
What is it meants by '$_'?
how to get back up from private character editor which is saved in the format of .udf
sort a word "system" in perl/shell without using built in functions output should be emssty
How can I implement the function overloading in Perl ? I read about the operator overloading, I do not know how to implement the function overloading. Thanks in advance ?