-
Create a Perl script
Hello,------------------------------------------- id name address 1 cristine New York 2 murray Redmond 3 kumar Sunnyvale-------------------------------------------This is 'sample.xlsx' file. (Can't attach the image.)'id' string in A1, 'name' in B1, 'address' in C1 column in excel file.Create a Perl script to store the information about...
-
Perl Usage
How do you use Perl in Insurance domain related projects, What kind of work you automate in it. what are the main responsibilities.
-
-
-
-
-
-
-
-
-
-
-
system "mkdir -p $temp/engl_2/wf";
}
if ( ! -s "$temp/backup_basedir" ) {
system "mkdir -p $temp/backup_basedir";
}
${pack_2}= -M "${temp}/engl_2/wf/${wf_package_name}.data";
${new_pack}= -M "${pack}/package.data";
This is a sample script of perl language.
What is the use of "-s" and "-M" in the above script? ">#create directory if not thereif ( ! -s "$temp/engl_2/wf" ) { system "mkdir -p $temp/engl_2/wf";}if ( ! -s "$temp/backup_basedir" ) { system "mkdir -p $temp/backup_basedir";}${pack_2}= -M "${temp}/engl_2/wf/${wf_package_name}.data";${new_pack}= -M "${pack}/package.data";This is a sample script of perl language.What is the use of "-s" and "-M" in the above script?
-
PERL Symbol Table
What is Symbol table and how it Works?
-
Explain the difference between "my" and "local" variable scope declarations. ?
Both of them are used to declare local variables.The variables declared with "my" can live only within the block it was defined and cannot get its visibility inherited functions called within that block, but one defined with "local" can live within the block and have its visibility in the functions called within that block.
-
-
-
-
-
Perl Interview Questions
Ans