Enter your search terms
Submit search form
Web
examineonline.googlepages.com
Online Exam
>>
Programming
>>
PERL
>>
PERL Tutorial
Menu
Programming
COMPTIA
GMAT
English
IQ
DataBase
OS
MCSE
CISCO
Finance
Management
Health
Soft Skills
Web Building
Multimedia
PERL Tutorial
1 . When you're pattern matching, you describe the pattern using:
A.
A string in double quotes
B.
A MySQL select statement
C.
A regular expression
D.
A template
2 . Perl is:
A.
A type of interactive web page
B.
A programming language
C.
An application program
D.
A relational database
3 . The printf format "%6.2f" displays a number
A.
At least six columns wide in total, with two figures after the decimal place
B.
Exactly six digits before the decimal place, and two digits after
C.
At least six digits before the decimal place, and two digits after
D.
Exactly six columns wide in total, with two figures after the decimal place
4 . The statement open (FH,"abc.txt");
A.
opens the file abc.txt for overwriting
B.
opens the file abc.txt for reading
C.
contains an error, so won't compile
D.
opens the file abc.txt for appending
5 . When you create a variable, you may assume it starts off containing:
A.
1
B.
You may not make any assumption
C.
The boolean value "false"
D.
A null string (or 0 arithmetically)
6 . Which brackets do you use to change the order of precedence of operations?
A.
Curly braces
B.
Square brackets
C.
Round brackets
D.
You don't use brackets in Perl - you write in RPN (Reverse Polish Notation)
7 . Which of the following tests if the string held in $qn includes the word "perl"?
A.
if ($qn =~ /perl/) .....
B.
if ($qn == "perl") ....
C.
if ($qn = "perl") .....
D.
if ($qn eq "perl") .....
8 . Which of these is NOT available for Perl:
A.
Perl, legally, for free
B.
Individual and site licenses
C.
Full documentation of the language which you can print out yourself
D.
A Carribean cruise in 2006 on which you can meet some of the Perl gurus.
9 . Perl was first released in:
A.
1978
B.
1998
C.
Perl hasn't yet been released
D.
1988
10 . Which of the following is NOT a comment line in a Perl program?
A.
# This is a comment
B.
#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/
C.
##########################################################
D.
//////////////////////////////////////////////////////////
11 . What is a file handle used for?
A.
Reading binary data from a file into a scalar variable
B.
Finding where a file is on the disc
C.
Accessing a disc file or other input/output stream
D.
Deleting, moving or renaming a file
12 . The "%" operator returns:
A.
The larger of two numbers e.g. 200 % 20 would return 200
B.
A percentage of a number e.g. 200 % 20 would return 40
C.
The remainder when one number is divided by another
D.
The remainder when one number is divided by another e.g. 18 % 7 would return 5
13 . What is Perl ?
A.
Practical Extraction and Report Language
B.
Practice for Exclusive and Report Language
C.
Practical Extraction and Report Learning
D.
Practical Exclusive and Report Language
14 . Which of the following is used in perl?
A.
else if
B.
elseif
C.
elsif
D.
elif
15 . The $_ variable
A.
holds the last pattern matched.
B.
holds the output field separator.
C.
identifies the current command line argument.
D.
none of the above is correct.
16 . The getdir command
A.
Reads a single file name from an open directory handle.
B.
Reads the rest of the file names from an open directory handle.
C.
Only works after anopendir command.
D.
Is not a perl command.
17 . The value of the expression $yards += 10
A.
is 10.
B.
is true.
C.
cannot be determined from the information given.
D.
relies on which command line arguments were used.
18 . $x = @y[2 .. 4]
A.
assigns$x the third, fourth and fifth elements of the y array concatenated together.
B.
assigns$y[4] to $x.
C.
assigns$y[2] to $x.
D.
assigns 3 to$x.
19 . Which of the following commands will turn a scalar ($str)into an array of characters?
A.
@a = split($str).
B.
@a = split(/\s/, $str).
C.
This task can be done in Perl but none of the above commands do it.
D.
@a = split(/./, $str).
20 . <ARGV>
A.
more than one of the above is correct.
B.
identifies any command line arguments starting with a-.
C.
will read the standard input if no arguments are listed on the command line.
D.
can be used to read each line in every file name listed on the command line.
Test Name :
PERL Tutorial
Category :
PERL
Number of Question :
20
Pass Score :
80
Test Result
Your Score :
Passing Score :
80
Result :
Copyright by
VanTuMinh
© 2007