Perl Programming Fundamentals
Test your knowledge of Perl programming concepts including variables, loops, arrays, file operations, database connectivity, and system functions.
Questions
Which file test can be done to see if a file has the sticky bit set on it?
- -s
- -l
- -S
- -k
Within a loop, which operator immediately ends execution of the loop?
- next
- last
- redo
- leave
You want to close the directory handle EVAN. Which of the following should you use to accomplish this?
- close EVAN;
- closedir EVAN;
- close_directory EVAN;
- none of the above
Assume that $var has the value hello . What is the value of the following sting?q (It’s time to say $var);
- It’s time to say $var
- It’s time to say hello
- None
- Both
Consider the following program code @array= (“Y”,”W”,”X”); @array=sort(@array); unshift(@array , ”Z”); print($array[0]); What is the output of this code
- W
- X
- Y
- Z
Consider the following lines of code: @array1 = ("apples", "oranges", "pears", "plums"); foreach (@array1) {print "$_\n"}; What is the result of these lines of code?
- applesorangespearsplums
- apples oranges pears plums
- apples
- apples oranges pears plums
Which function can be used to print a message to standard error, but not quit the program?
- warn
- alert
- tell
- notifiy
Suppose the variable $var has the value abc123abc . What is the value of $var after the following substitution?
- $var=~ s/(\d+)/ $1*2 /e ;
- “abc”
- It will produce error
- “ABC123ABC”
Your script has just read in a variable from the keyboard and you want to strip that variable of the newline character that came in. What operator should you use to perform this operation?
- tidy
- trim
- chomp
- slim
Which file test can be done to see if a file is a symbolic link?
- -s
- -l
- -S
- -k
Which Perl function can be used to launch a child process to run a program?
- split
- spin
- fork
- system
Which file test can be done to see if a file exists and has a nonzero size?
- -s
- -l
- -S
- -k
Within Perl, which operator is used to change the working directory?
- cd
- chdir
- pwd
- wd
What is the value of @list at the end of the following program? #!/usr/local/bin/perl @list=(1,2.3); &testsub(*list); Sub testsub{ Local (*sublist)=@_; $sublist[1] = 5; }
- (1,2.3)
- (1,5,3)
- Will produce error
- (1,4,3)
Consider the following program code: @array = (10, Masami, 10..13, Niklas); for ($i = 1; $i < $#array; $i++) { print($array[$i] ); } What is the result of executing this program code?
- The code will output the following: Masami 10 11 12 13
- The code will output the following: 10 Masami 10 11 12 13
- The code will output the following: 10 Masami 11 12 13 Niklas
- The code will output the following: Masami 10 11 12 13 Niklas
Consider the following program code: $x = 10; LOOP: while ($x < 15) { print ($x ); if ($x >= 14 && $x <= 20) { $x += 2; redo LOOP; } else { $x++; }} What is the result of executing this program code?
- The code will output the following: 11 12 13 14 15 16 17 18 19
- The code will output the following: 10 11 12 13 14 16 18 20 22
- The code will output the following: 10 11 12 13 14 16 18 20
- The code will output the following: 10 11 12 13 14 15 16 17 18 19 20
Consider the following program code: $y = 1; $x = 2; $z = 3; do { print ($y ); } while ($y eq 2); do { print ($x ); } until ($x eq 2); print ($z ); What is the result of executing this program code?
- The code will output the following:123
- The code will output the following: 3
- The code will output the following:23
- The code will output the following: 321
Which line of code represents the correct syntax to establish a reference to a database handle?
- $dbh = DBI::connect("dbi:mysql:myPhoneBook");
- $dbh = DBD:->connect("dbi::mysql::myPhoneBook");
- $dbh = DBD::connect("mysql:dbi:myPhoneBook");
- $dbh = DBI->connect("dbi:mysql:myPhoneBook");
What do the variable $? contains?
- Page length of a particular output file
- The input end-of-line character
- The return code returned by a command called by the system function.
- The error code generated by a system library routine.
What do the variable $! contains?
- Page length of a particular output file
- The input end-of-line character
- The return code returned by a command called by the system function.
- The error code generated by a system library routine.