Write a cgi program to show the header part?


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

Post New Answer

More CGI Perl Interview Questions

How to compare two strings in perl?

0 Answers  


Why do you use only Perl when there a lot of more languages available in market like C, Java?

1 Answers  


what is Polymorphism in Perl?

0 Answers  


What does delete function do in perl?

0 Answers  


What does the qx{ } operator do?

0 Answers  


How do you match one letter in the current locale?

0 Answers  


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

0 Answers  


Explain subroutine?

0 Answers  


“The methods defined in the parent class will always override the methods defined in the base class”. What does this statement means?

0 Answers  


How does polymorphism work in perl? Give an example.

0 Answers  


You want to download the contents of a url with perl. How would you do that?

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?

2 Answers  


Categories