Explain chomp?
No Answer is Posted For this Question
Be the First to Post Answer
Demonstrate subroutines in perl with a simple example.
I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl
What is the difference between use and require in perl?
What are the arguments and what do they mean in perl programming?
List all the features of perl programming?
Explain the various characteristics of perl.
you are required to replace a char in a string and store the number of replacements. How would you do that?
How do I debug a perl program?
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?
How to do comment in perl?
How to connect to SQL server through Perl?
what r the different type of function in perl ???