What is grep used for in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What are the steps involved in configuring a server using cgi programming?
What is perl push array function?
How will you open a file in read-only mode 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?
What is grep used for in perl?
Which has highest precedence in between list and terms? Explain?
“The methods defined in the parent class will always override the methods defined in the base class”. What does this statement means?
How would you trap error occurred in the perl program/file?
What is boolean context?
Differentiate between arrays and list in perl.
List the files in current directory sorted by size ?
Explain the use of 'my' keyword in perl?