How to read a directory in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Why do you program in Perl?
What is the different between array and hash in perl programming?
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 split function in perl?
What is the difference between perl array and perl hash?
Differentiate between c++ and perl.
How do you debug a Perl scripting ( at the compile time error or run time error) in Unix environment ?
Which of these is a difference between Perl and C++ ?
Show the use of sockets for the server and client side of a conversation?
How many loop control keywords are there in perl?
How to start perl in interactive mode?
How to code in perl to implement the tail function in unix?