What are some of the key features of objects in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Comment on the scope of variables in perl.
What is the use of -w, -t and strict 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?
Which functions in perl allows you to include a module file.
Explain the default scope of variables in perl?
What is automatic error handling in perl?
How to connect with sqlserver from perl and how to display database table info?
How to read a directory in perl?
How to know whether a key exists or not in perl?
How to replace perl array elements?
What are perl strings?
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 ?"