There is no strict data types in perl unlike in other high
level languages like Java so wouldn't that be a problem if a
code in perl is to be a written by a big team of 20+
members ?"


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

Post New Answer

More CGI Perl Interview Questions

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 does the qq{ } operator do?

0 Answers  


What does this symbol mean '->'?

0 Answers  


what is the difference between require and use in perl?

3 Answers   IBM,


What purpose does each of the following serve: -w, strict, - T ?

2 Answers  






What does redo statement do in perl?

0 Answers  


Write a program that shows the distinction between child and parent process?

0 Answers  


How do find the length of an array?

0 Answers  


What are the arguments and what do they mean in perl programming?

0 Answers  


What is the use of -t?

0 Answers  


What is the difference between use and require in perl?

0 Answers  


Which operator in perl is used for the concatenation of two strings?

0 Answers  


Categories