How the interpreter is used in Perl?
No Answer is Posted For this Question
Be the First to Post Answer
There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"
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 can we create perl programs in unix, windows nt, macintosh and os/2 ?
Explain the meaning of perl one-liner?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
Explain '->' in perl?
How to read multi lines from a file in perl?
What value is returned by a lone `return;’ statement?
What is the difference between single (') and double (") quote in a string in perl?
Write the program to process a list of numbers.
Why do you use only Perl when there a lot of more languages available in market like C, Java?
How are parameters passed to subroutines in perl?