Explain what is lvalue?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of -n and -p options?
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 is the use of 'ne' operator?
Explain join function in perl?
What is a chop() function in perl?
What are the various perl data types based on the context?
What are stdin, stdout and stderr?
Write a program to decode the data in the form using cgi programming
Explain ivalue?
how to extract pin_code,phone_number,year from text file using regular expressions in perl
What is perl programming?
What syntax is used for grep() function?