What does the qq{ } operator do?


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

Post New Answer

More CGI Perl Interview Questions

Explain grooving and shortening of arrays and splicing of arrays?

0 Answers  


How to find the length of an array in perl?

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  


What rules must be followed by modules in perl.

0 Answers  


What is subroutine in perl?

0 Answers  






Can inheritance be used in perl?

0 Answers  


What are hashes?

0 Answers  


What is “grep” function in perl?

0 Answers  


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

0 Answers  


How to make the following assignment, as arrayreference assignment ? my $arr_ref='[1,2,3,4,4,'elem']';

2 Answers  


If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?

0 Answers  


How to concatenate strings with perl?

0 Answers  


Categories