- Perl - Home
- Perl - Introduction
- Perl - Environment
- Perl - Syntax Overview
- Perl - Data Types
- Perl - Variables
- Perl - Scalars
- Perl - Arrays
- Perl - Hashes
- Perl - IF...ELSE
- Perl - Loops
- Perl - Operators
- Perl - Date & Time
- Perl - Subroutines
- Perl - References
- Perl - Formats
- Perl - File I/O
- Perl - Directories
- Perl - Error Handling
- Perl - Special Variables
- Perl - Coding Standard
- Perl - Regular Expressions
- Perl - Sending Email
- Perl - Socket Programming
- Perl - Object Oriented
- Perl - Database Access
- Perl - CGI Programming
- Perl - Packages & Modules
- Perl - Process Management
- Perl - Embedded Documentation
- Perl - Functions References
- Perl Useful Resources
- Perl - Questions and Answers
- Perl - Quick Guide
- Perl - Cheatsheet
- Perl - Useful Resources
- Perl - Discussion
Perl Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to Perl. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Answer : A
Explanation
Perl is a case sensitive programming language. Thus $Manpower and $manpower are two different identifiers in Perl.
Q 2 - Which of the following is correct about Array in Perl?
A - An array is a variable that stores an ordered list of scalar values.
Answer : D
Explanation
All of the above options are correct.
Q 3 - Which of the following method pushes the values of the list onto the end of the array?
Answer : A
Explanation
push @ARRAY, LIST − Pushes the values of the list onto the end of the array.
Q 4 - Which of the following statement terminates the loop statement and transfers execution to the statement immediately following the loop?
Answer : B
Explanation
last statement − Terminates the loop statement and transfers execution to the statement immediately following the loop.
Q 5 - Which of the following operator performs exponential (power) calculation on operators?
Answer : D
Explanation
** − Exponent − Performs exponential (power) calculation on operators.
Q 6 - Which of the following operator checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true?
Answer : C
Explanation
<= − Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true.
Q 7 - Which of the following operator returns a list of values counting (up by ones) from the left value to the right value?
Answer : C
Explanation
.. − The range operator .. returns a list of values counting (up by ones) from the left value to the right value.
Q 8 - Which of the following function returns the current local time on the machine that runs the script?
Answer : A
Explanation
localtime − returns the current local time on the machine that runs the script.
Q 9 - Which of the following is true about Subroutine Call Context?
Answer : C
Explanation
Both of the above options are correct.
Q 10 - Which of the following function points current position of a pointer to a particular position in a file?
Answer : C
Explanation
You can use seek function to point a particular position inside the file.