Explain lists ?
No Answer is Posted For this Question
Be the First to Post Answer
Explain chomp?
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 ?
Why -w argument is used with perl programs?
What are the arguements we normally use for perl interpreter?
When would you not use Perl for a project?
How can you create anonymous subroutines?
What is the difference between module and package?
What is the difference between perl array and perl hash?
What does file test operators do in perl?
How many types of primary data structures in Perl and what do they mean?
what are prefix dereferencer and list them out?
how to find a substring in a string without using substr built in functions, and print the substring found