CIW 1D0-437 - CIW PERL FUNDAMENTALS
Which one of the following choices will replace all occurrences of the word perl with the word Perl?
Consider the following lines of code:
$_ = "This is a test";
s/^([^ ]*)\s*([^ ]*)/$2 $1/;
print;
What is the output of these lines of code?
Which line of code represents the correct syntax to establish a reference to a database handle?
Consider the following program code:
%employees = ("Lucy", "Accounting", "Armando", "Finance",
"Adrienne", "Marketing");
delete($employees{"Lucy"});
Which of the following lines of code has the same effect as the preceding code?
