What are numeric operators in perl?


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

Post New Answer

More CGI Perl Interview Questions

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

4 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,


How does polymorphism work in perl? Give an example.

0 Answers  


Explain the meaning of closure in perl.

0 Answers  


You want to empty an array. How would you do that?

0 Answers  


Explain '->' in perl?

0 Answers  


How would you ensure the re-use and maximum readability of your perl code?

0 Answers  


How to add elements in a hash in perl?

0 Answers  


How do you find the length of an array?

0 Answers  


Demonstrate subroutines in perl with a simple example.

0 Answers  


What is the use of '>>' in perl?

0 Answers  


What is subroutine in perl?

0 Answers  


Categories