Consider the following program code:
$ x = 0;
$ y = 5;
do
{
print ($x $y );
}
while (++$x < 5 && ++$y < 10);
print ($x $y );
What is the result of executing this program code?
Consider the following code:
%chars = ("a", "100", "b", "90", "c", "80");
Which one of the following choices will reverse the key/value pairing of the code?
Which statement will print the capital attribute of the $kansas object?
Which of the following tasks is the least effective in reducing errors in Perl scripts?
Which one of the following choices lists the three loop-control commands?
Which of the following accurately describes the roles of the Database Interface Module
(DBI) and the Database Driver Module (DBD)?
Consider that a file named test.txt contains this line of text:
One line of test text.
What is the output of the following lines of code?
$file = "test.txt";
open (OUT, "<$file") || (die "cannot open $file: $!");
seek(OUT, 15, 0);
read(OUT, $buffer, 5);
print $buffer . "\n";
print tell(OUT);
Which statement will print the capital attribute of the $kansas object?
Consider the program code in the attached exhibit. What is the result of executing this program code?

Consider the following program code:
$val = 5;
if ($val++ == 6)
{
print("True ");
}
else
{
print("False ");
}
if ($val++ == 6)
{
print("True ");
}
else
{
print("False ");
}
What is the output of this code?