What are the logical operators used for small scale operations?
No Answer is Posted For this Question
Be the First to Post Answer
What does redo statement do in perl?
What are the various perl data types based on the context?
What is the function of cgiwrap in cgi programming?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
what is the function that is used to identify how many characters are there in a string?
What are the various advantages and disadvantages of perl?
How does polymorphism work in perl?
Explain different types of perl operators.
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?
what are the steps involved in reading a cgi script on the server?
When do you use perl programming?
What is qq (double q)operator in perl?