Write a script to reverse a string without using perl's built in functions?


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

Post New Answer

More CGI Perl Interview Questions

What is perl push array function?

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,


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

0 Answers  


what are the steps involved in reading a cgi script on the server?

0 Answers  


What is the function of virtual documents in cgi programs?

0 Answers  






Explain the meaning of perl one-liner?

0 Answers  


What does the qx{ } operator do?

0 Answers  


what r the different type of function in perl ???

1 Answers   ABC, Symphony,


Demonstrate subroutines in perl with a simple example.

0 Answers  


Why Perl aliases are considered to be faster than references?

0 Answers  


you are required to replace a char in a string and store the number of replacements. How would you do that?

0 Answers  


Write the program to process a list of numbers.

0 Answers  


Categories