Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)
No Answer is Posted For this Question
Be the First to Post Answer
How would you trap error occurred in the perl program/file?
Write a cgi program to show the header part?
Which of these is a difference between Perl and C++ ?
What are some of the key features of objects in perl?
Mention what is cpan?
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's the difference between /^Foo/s and /^Foo/?
How will you declare a variable in perl?
How can you use Perl warnings and what is the importance to use them?
Explain about typeglobs?
Write a program to show the process of spawning a child process
Explain splicing of arrays?