Explain perl. What are the advantages of programming in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Write syntax to add two arrays together in perl?
i have a folder called 'error' and in that, i have error log files which are generated by the build, now i want to findout the string 'error' from each log file and that error has to be copied into the another file called 'analysis'. how do you do this in perl?
What is q (single q) operator in perl?
You want to open and read data files with perl. How would you do that?
Explain different types of perl operators.
Write syntax to use grep function?
write a script to display mirror image of a entered value and also check whether Palindrome
Differentiate between arrays and list in perl.
How do I debug a perl program?
How will you open a file in a write-only mode in perl?
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 hashes?