What is a chomp() function in perl?


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

Post New Answer

More CGI Perl Interview Questions

what is Chop & Chomp function does?

0 Answers  


What is perl unshift array function?

0 Answers  


How can you create anonymous subroutines?

0 Answers  


Explain what is the scalar data and scalar variables in Perl?

0 Answers  


What does localtime() do in perl?

0 Answers  






How many types of variable in perl?

0 Answers  


“Perl regular expressions match the longest string possible”. What is the name of this match?

0 Answers  


Which has the highest precedence, List or Terms? Explain?

0 Answers  


How do I print the entire contents of an array with Perl?

0 Answers  


What package you use to create a windows services?

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,


There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"

0 Answers   Cisco, Oracle,


Categories