Choose a topic to test your knowledge and improve your Perl skills
Which is the basic data type of Perl?
How are scalars marked with?
Which among the following are Scalars supported by Perl?
Which operator is used to compare Strings in Perl?
Which mong the following statements are/is true? S1: Attempting to use string operations on numbers will raise warnings S2: Attempting to use number operations on non-numeric strings will raise warnings
Array References in Perl are _______
Which is true with respect to Array References in Perl?
Which operator is used to access the contents of Array References?
Scalar Reference is used in which scenarios? S1: Disambiguate a file name from file content S2: Disambiguate returned content from a returned error string
Which among the choices are/is false with respect to Arrays in Perl?
Which of the following is not a sigil in Perl?
Chhose the correct Statements: S1: Typeglobs are handled when dealing with files S2: Typeglob *foo holds references to the contents of global variables
Under which scenario & sigil is not used in Perl?
Which of the following acepts an expression in Perl?
Which of the statements are false with respect to Hash References in perl? S1: Hash references are scalars S2: Any changes made within the subroutine will be made to the original hash
In Perl, if the keys in Hash are not strings-then
How to access an element of %hash?
Which among the following helps to create hashes out of arrays?
When does hashes becomes true if used as boolean?
Which among the following esacpe sequence is not interpolated by Perl?
Which among the following statements are true? S1: Double quotes interpolate the enclosed string S2: Single quotes interpolate the enclosed string
Which of the following number evaluates to true in Perl?
Which of the following Strings evaluates to false in Perl?
use Time::Piece; is available in which version of Perl?
How to create a new datetime?
Which of the following conditional statements not supported by Perl?
Which keyword is used to create Subroutines in Perl?
When functions are to be treated as variables which sigil is mandatory?
What does the function does not output when use Data::Show; is used in Perl?
Which is false with respect to array and list relationship?
Which of the following usage of List is not allowed in Perl?
Choose the correct choice with respect to Perl S1: List can be assigned to hash s2: Hash can be used as list
Which operator is used in comparator function to compare strings?
Which operator is used in comparator function to compare numbers?
Which of the following is not true with respect to Sorting in Perl? (Version > 5.16)
What does the mode '>' write (trunc) does in Perl?
What does the '+>' file operation denote in Perl?
What does the '+>>' file operation denote in Perl?
Which among the following enables faster file read?