What are different data types that perl supports. Elaborate on them.
No Answer is Posted For this Question
Be the First to Post Answer
sort a word "system" in perl/shell without using built in functions output should be emssty
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?
How to read a directory in perl?
Explain use of ‘my’ keyword in perl?
Why does Perl not have overloaded functions?
Explain lists and ivalue?
What is 'rollback' command in perl?
Explain goto expr?
How do I debug a perl program?
How do I replace every character in a file with a comma?
Explain substr function in perl?
What is -> symbol in perl?