SUBJECTS
|
BROWSE
|
CAREER CENTER
|
POPULAR
|
JOIN
|
LOGIN
Business Skills
|
Soft Skills
|
Basic Literacy
|
Certifications
About
|
Help
|
Privacy
|
Terms
|
Email
Search
Test your basic knowledge |
Perl Programming
Start Test
Study First
Subject
:
it-skills
Instructions:
Answer 50 questions in 15 minutes.
If you are not ready to take this test, you can
study here
.
Match each statement with the correct term.
Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.
This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Returns a copy of the string as all upper case
uc($string)
like functions
Scalar variables
scalar context (Ex: $myArray[4] = 2)
2. Assignment of a hash variable for a single hash element
$hashName{keyName}="Value to Add"
Variable context
ucfirst($string)
use moduleName; Ex: use Roman;
3. Returns the length of the string including escape sequences
reverse(@array)
use moduleName; Ex: use Roman;
flow-control
length($string)
4. < - > - == - <= - >= - !=
flow-control
arithmetic comparison operators
unshift(@array, $newValue)
reverse(%hashName)
5. Returns the sub string starting at index $startindex and ending after $numchars chars in the string $string
last index
Scalar variables
$#arrayName
substr($string, $startindex, $numchars)
6. Remove trailing newline from each element in the array
ucfirst($string)
values(%hash)
%hashname = (key1=>"value1", key2=>"value2", key3=>"Value3")
chomp(@string)
7. Common ___________: substr($string, $start, $numchars); - length($string) - lc($string) - uc($string) - chomp($string) - chomp(@string) - join(':", @string) - split(/\s/, $string) - lcfirst($string) - ucfirst($string)
string manipulation functions
@ARGV
exists($hashName{keyName})
newline
8. eq - ne - lt - le - gt - ge
keys(%hash)
lc($string)
Variable context
size string comparison operators
9. Swap keys for values and values for keys. Will cause issues if there are multiple hash entries with the same value
last index
each(%hash)
basic binding operators
reverse(%hashName)
10. _________ in perl - Singular variable - starts with "$" - Number or characer or string- Perl does automatic type conversion of these
@ARGV
Scalar variables
interpreter
@arrayName size
11. Regular __________: * - 0 or more characters - + - 1 or more characters - ? - 0 or 1 characters
Expression Quantifiers
%hashname = (key1=>"value1", key2=>"value2", key3=>"Value3")
Array variables
Variable context
12. Regular ____________: w - alphanumeric word including underscor - d - digits 0-9 - s any whitespace - . - any character
Expression character classes
newline
Assignment
hash functions
13. In perl the _______ will recognize syntax errors and halt execution BEFORE it begins - and will output statements; it does not understand and the line which it encountered the error on
push(@array, $newValue)
(@array)
interpreter
%ENV hash array
14. The four types of loops in perl: while - until - for - ________
execution block
foreach
Assignment
$hashName{keyName}="Value to Add"
15. scalar(@arrayName) returns the ______ of the array names
split(/\s/, $string)
substr($string, $startindex, $numchars)
array functions
@arrayName size
16. Adds a new element to end of the array with value $newValue
chomp($string)
newline
push(@array, $newValue)
basic binding operators
17. The use of "if" "if-else" and "if-elsif-else"
delete($hashName{key})
flow-control
values(%hash)
@ARGV
18. The __________ in perl: - uses grave marks `command args`- returns the output of the command to the variable you specify - if $output = `command arg` the output is stored all in one variable (all lines seperated by n) - if @output = `command arg` the
join(':', @array)
Variable context
command substitution
chomp(@string)
19. Add a new element to the from of the array with the value $newwValue
push(@array, $newValue)
flow-control
use moduleName; Ex: use Roman;
unshift(@array, $newValue)
20. _________ @arrayName) returns the size of the array
similar data types
scalar
ucfirst($string)
reverse(@array)
21. The two primary methods of executing _______ in perl: - system("command args") - - `command args`
ucfirst($string)
system commands
Variable context
array functions
22. Removes the first element of the array shift
last index
@entireFile=<FILEHANDLE>
(@array)
size string comparison operators
23. Removes the last element from the array pop
chomp($string)
join(':', @array)
(@array)
Assignment
24. ________ in perl - can be scalar array or hash context - tells the interpreter what you are looking for (Ex: "$arrayname[$index_number]")
Hash variables
sort(@array)
Variable context
delete($hashName{key})
25. To include modules in perl
use moduleName; Ex: use Roman;
(@array)
Expression Quantifiers
command substitution
26. _________ of scalar variables in perl - using "=" - Ex: $myVariable = 5;
@arrayName size
Assignment
@entireFile=<FILEHANDLE>
size string comparison operators
27. The _______ in perl: - used to execute an external command - will output results of command to terminal - returns the exit status of the program that ran - use this for commands that you dont care about SAVING the output to a variable
system() function
Scalar variables
array functions
delete($hashName{key})
28. Returns a copy of the string with the first letter lower case
lcfirst($string)
interpreter
each(%hash)
exists($hashName{keyName})
29. In arrays elements need not be __________
delete($hashName{key})
similar data types
split(/\s/, $string)
keys(%hash)
30. Join the elements of the array seperating the elements with the ':' character
31. A special system variable used to pass arguments to script
reverse(@array)
last index
@ARGV
like functions
32. ________ in perl - A collection of data (static data or scalar variables or arrays or hashes can all be stored in an array element)
command substitution
uc($string)
@entireFile=<FILEHANDLE>
Array variables
33. Two ____________ in regular expressions: =~ Contains - !~ Does not contain
basic binding operators
Expression character classes
values(%hash)
comments
34. Reverses the elements of the array
each(%hash)
reverse(@array)
Expression Quantifiers
FILEHANDLE
35. _________ $#arrayName give value of last index available in the array. Ex an array of size 5 will have its $#arrayName = 4
ucfirst($string)
Special array
size string comparison operators
substr($string, $startindex, $numchars)
36. The open() statement in perl: open(________, file_mode, "filename.txt")
FILEHANDLE
like functions
Expression character classes
access modes
37. The use of ______ in perl - Documenting code - Created by placing a "#" on a line. - are not multi-line
comments
join(':', @array)
lc($string)
Array variables
38. Delete the hash entry with the key given
use moduleName; Ex: use Roman;
system commands
each(%hash)
delete($hashName{key})
39. To read an entire file into an array (one line per element)
@entireFile=<FILEHANDLE>
array functions
length($string)
system commands
40. To get rid of the ________ in $line you could now chomp() (Ex: chomp($line);)
Expression Quantifiers
Special array
Variable context
newline
41. Returns all of the keys of the hash as an array
keys(%hash)
Assignment
like functions
reverse(%hashName)
42. Common ________: keys(%hash) - values(%hash) - each(%hash) - delete($hash{keyName}) - exists($hash{keyName}) - reverse(%hash)
hash functions
system commands
push(@array, $newValue)
Expression character classes
43. Sort and array alphabetically
FILEHANDLE
sort(@array)
reverse(@array)
values(%hash)
44. Removes trailing newline
flow-control
chomp($string)
system() function
foreach
45. Split string into an array using spaces as delimeter
hash functions
command substitution
split(/\s/, $string)
join(':', @array)
46. The variable that provides the last index of an array
$#arrayName
like functions
basic binding operators
substr($string, $startindex, $numchars)
47. The purpose of {} in an "if" statement: To Define the __________ of the if statement. Unlike C the {} braces ARE REQUIRED
size string comparison operators
(@array)
execution block
@ARGV
48. Arrays can be assigned or read in _________
scalar context (Ex: $myArray[4] = 2)
chomp(@string)
%hashname = (key1=>"value1", key2=>"value2", key3=>"Value3")
hash functions
49. $#arrayName returns the value of the ______ of the array (NOT the data stored in that array element)
Array variables
last index
system() function
hash functions
50. Explain how to read a line from a file handle
ucfirst($string)
keys(%hash)
flow-control
$line=<FILEHANDLE>