How to copy a file in perl?
No Answer is Posted For this Question
Be the First to Post Answer
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 subroutine in perl?
what is the meaning of rigging?
Explain regular expression in perl?
What is 'commit' command in perl?
Which functions in Perl allows you to include a module file or a module and what is the difference between them?
How interpreter is used in perl?
What arguments do you frequently use for the Perl interpreter and what do they mean?
There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"
List all the features of perl programming?
What is perl scripting?
Write syntax to add two arrays together in perl?