What is chomp() operator/function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

Why do we use "use strict" in perl?

0 Answers  


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?

1 Answers   A1 Technology,


We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?

0 Answers   AppLabs,


What is perl shift array function?

0 Answers  


What is perl programming?

0 Answers  






Is perl a case sensitive language?

0 Answers  


Comment on array slicing and range operator

0 Answers  


what is the procedure to define a user define module in your perl application?

2 Answers   IBM,


How to deleting an existing file in perl programming?

0 Answers  


Why do you use Perl?

0 Answers  


what are steps to do to lock the sony ericsson mobile with password?

0 Answers  


while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?

1 Answers  


Categories