Write a program to decode the data in the form using cgi programming
No Answer is Posted For this Question
Be the First to Post Answer
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?
Explain lists and ivalue?
How can you create an object of a class in a package?
What interface used in PERL to connect to database? How do you connect to database in Perl?
what is the difference between java and cgi?
Packing and Unpacking. Hi, I want to get output as 0x23400000345.... in the below example How to get? i tried out, but unable to get the answer $r=0x234; $t=0x345; $y=pack('L L',$t,$r); $x1=unpack('L!',pack('P',$y)); printf("\nThe value is $x1"); I didn't get constant output
Explain the arguments for perl interpreter.
What happens when you return a reference to a private variable?
Explain what is the scalar data and scalar variables in Perl?
Differentiate between use and require, my and local, for and foreach and exec and system
How can you define “my” variables scope in Perl and how it is different from “local” variable scope?
What is subroutine in perl?