how to connect cisco switch uisng perl script
No Answer is Posted For this Question
Be the First to Post Answer
What are scalars in perl?
What interface used in PERL to connect to database? How do you connect to database in Perl?
How interpreter is used in perl?
What rules must be followed by modules in perl.
Explain what is STDIN, STDOUT and STDERR?
What is 'rollback' command 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?
How would you replace a char in string and how do you store the number of replacements?
What value is returned by a lone `return;’ statement?
How to read a single line from a file in perl?
Can we load binary extension dynamically?
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?