Data Structures - English
PERL Tutorials - English 23
-
1
Overview and Installation of PERL -
2
Variables in Perl -
3
Comments in Perl -
4
for for each loops -
5
while do while loops -
6
Conditional statements -
7
More Conditional statements -
Data Structures -
9
Arrays -
10
Array functions -
11
Hash in Perl -
12
Functions in Perl -
13
Blocks in Perl -
14
Access Modifiers in PERL -
15
Referencing and Dereferencing -
16
Special Variables in PERL -
17
File Handling -
18
Exception and error handling in PERL -
19
Including files or modules -
20
Sample PERL program -
21
Perl Module Library (CPAN) -
22
Downloading CPAN module -
23
Perl and HTML
Outline:
Perl provides 3 types of data structures. 1. Scalar This is the basic data structure in PERL. It is as good as defining variables in Perl. e.g $variable = 9; 2. Array It is an ordered collection of data. It contains elements of any type. e.g @array = (1, 5, 6, ‘abc’, 7); 3. Hash It is an un-ordered collection of data. It is key-value pair structure. It contains elements of any type. e.g %hash = ( 'Name' => 'John', 'Department' => 'Finance' );