Explain lists and ivalue?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

What happens when you return a reference to a private variable?

0 Answers  


How can I display all array element in which each element will display on next line in perl ?

0 Answers  


What is the main function of cookie server?

0 Answers  


How to determine strings length in perl?

0 Answers  


Explain the functioning of conditional structures in perl.

0 Answers  






If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?

0 Answers  


Explain chomp, chop, cpan, tk.

0 Answers  


Which functions in perl allows you to include a module file. State their differences.

0 Answers  


Explain about the applications of perl?

0 Answers  


You want to download the contents of a url with perl. How would you do that?

0 Answers  


What do the symbols $ @ and % mean when prefixing a variable?

1 Answers   Barclays,


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?

2 Answers  


Categories