GeekInterview.com
  I am new, Sign me up!
 

Perl Interview Questions


Perl Interview Questions

Questions: 61
Comments: 175
 Showing Questions 1-10 of 61 Questions
[1] 2 3 4 5 6 7 Next >>
 Sponsored Links

 
 Perl Interview Questions
Sorting Options :  

How to install Perl module using CPAN. How to include the module in a program?  
Latest Answer: Get in to CPAN shell byPERL -MCPAN -e shellcpan> install "packagename" ...

Please provide me Perl scriptwhich reads the data from xcel sheet and renames the dsx file.Process followed to rename is:make a list of old and new file names in xcel sheet.compare the old file name in 
Latest Answer: use Win32::OLE;use Win32::OLE::Enum;use Win32::OLE qw(in with);use Win32::OLE::Const 'Microsoft Excel';use Win32::OLE::Variant;use Spreadsheet::ParseExcel;use Spreadsheet::WriteExcel;use Spreadsheet::ParseExcel::SaveParser;use strict;$Win32::OLE::Warn ...
Read Answers (1) | Asked by : s4sweety

Latest Answer: * Object Oriented means programme will be their in terms of Class and Object relationship will be their.* Structured Oriented Means programme will be their in terms of multiple Functions. ...

What is the Use of Symbolic Reference in PERL? 
Latest Answer: > $name = "bam";> $$name = 1; # Sets $bam> ${$name} = 2; # Sets $bam> ${$name x 2} = 3; # Sets $bambam> $name->[0] = 4; # Sets $bam[0]symbolic reference means using a string as a reference. ...
Read Answers (1) | Asked by : sapam

What is Symbol table and how it Works?  
Latest Answer: Symbol table is a PERL structure which contains the identifier names(like 'variable'). The identifier became actual variable ($variable,@variable etc) type when it associate through typeglob.Symbol table contains only global variables. ...
Read Answers (2) | Asked by : sapam

How to find out whether reference is pointing to a scalar, array or hash? 
Latest Answer: You can use ref function. ...

You have unsorted array of strings, like:my @arr = qw(hello World Show must go on);Print this array, sorted in reversed case-insensitive order. 
Latest Answer: my @arr = qw(hello World Show must go on);#close print "@arr nreverse sorted: ", join(", ", reverse sort map {lc $_} @arr), "n"; #closer print "@arr nreverse sorted: ", join(", ",         ...

Latest Answer: Perl programs are generally used for: - text processsing  - text mining - test automation - simple network programming (simple sockets, just fetching webpage and parsing it) - GUI development with Perl/Tk  If ...

Suppose you run a program/script in Perl:system("./server ....");How will you check the return code? 
Latest Answer: $r = system("command .. e.g. search");print"r is $rn";Here, if $r is 0, that means command has executed successfully.Any other value means command has failed. ...
Read Answers (3) | Asked by : mpathak

Latest Answer: $arr= [1, 2,2+1 ,3+1];print "n arr[1]=|".$arr->[1]."|".$$arr[1]."|"; ...
Read Answers (4) | Asked by : Rajivcitcse2000

View page [1] 2 3 4 5 6 7 Next >>

Ask A Question
Go Top
 Sponsored Links

 
Sponsored Links

 
Ask Question
You must login to Ask Question or Register your free account

Category:

 
Question Title:


Question in Detail:

Add this to my Subscribed Questions (?)
Send me email when new answer is posted (?)

 
Expert Members
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape