What is 'commit' command in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What is boolean context?
Explain gmtime() function in perl?
Give an example of using the -n and -p option.
Explain goto expr?
How can you replace the characters from a string and save the number of replacements?
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?
What are scalars?
Which statement has an initialization, condition check and increment expressions in its body? Write a syntax to use that statement.
Explain subroutine?
What is perl unshift array function?
How do I debug a perl program?
Explain lexical variables.