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?
Why we use CGI?
Explain a tell function in perl?
What is the difference between for & foreach, exec & system?
What does delete function do in perl?
Show the use of sockets for the server and client side of a conversation?
How interpreter is used in perl?
You want to download the contents of a url with perl. How would you do that?
What are the purpose of close(), getc() and read() functions?
Who created perl?
You want to add two arrays together. How would you do that?
Write a script to reverse a string without using Perl's built in function