What is the difference between use and require in perl?
No Answer is Posted For this Question
Be the First to Post Answer
How can I display all array element in which each element will display on next line in perl ?
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?
Write a program to decode the data in the form using cgi programming
How to create a directory in perl?
What are the different types of perl operators?
What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
What can be done for efficient parameter passing in perl?
What is perl programming?
How do you set environment variables in perl?
We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?
Explain the different types of data perl can handle.