Quiz on Packages
Check your understanding of classes in Perl by solving the quiz in this lesson.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What are the member variable names for the following package?
package person;
sub new { # constructor
my $class = shift;
my $self = {
name => shift,
address => shift,
};
bless $self, $class;
return $self;
}
A.
name and $self
B.
bless and $class
C.
name and address
D.
None of the above
1 / 3