What are different data types that perl supports. Elaborate on them.


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

Post New Answer

More CGI Perl Interview Questions

How to turn on Perl warnings? Why is that important?

0 Answers  


Which functions in Perl allows you to include a module file or a module and what is the difference between them?

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 is epoch time in perl?

0 Answers  


Define perl scripting?

0 Answers  






How to add elements in a hash in perl?

0 Answers  


Explain socket programming in perl?

0 Answers  


What is the difference between localtime() and gmtime() functions?

0 Answers  


When would you not use Perl for a project?

1 Answers   IBM,


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

1 Answers  


Explain substr function in perl?

0 Answers  


What does this symbol mean '->'?

0 Answers  


Categories