Explain string comparison operators in perl.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that shows the distinction between child and parent process?
What do the symbols $ @ and % mean when prefixing a variable?
Explain the internal working of cgi
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?
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 ?
Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)
How would you ensure the re-use and maximum readability of your perl code?
What is qq (double q)operator in perl?
What does undef function in perl?
Name an instance where you used a CPAN module?
How to read a directory in perl?
what is the function that is used to identify how many characters are there in a string?