Does Perl have reference type?
No Answer is Posted For this Question
Be the First to Post Answer
What are the logical operators used for small scale operations?
We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?
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?
Explain goto label?
How to dereference a reference?
What is the function of cgiwrap in cgi programming?
Packing and Unpacking. Hi, I want to get output as 0x23400000345.... in the below example How to get? i tried out, but unable to get the answer $r=0x234; $t=0x345; $y=pack('L L',$t,$r); $x1=unpack('L!',pack('P',$y)); printf("\nThe value is $x1"); I didn't get constant output
What are the various perl data types based on the context?
what is the difference b/w coldfusion MX 6 and Coldfusion MX 7?
What does localtime() do in perl?
Why does Perl not have overloaded functions?
What can be done for efficient parameter passing in perl? Explain.