Data Structures - English
PERL Tutorials - English 23
-
1Overview and Installation of PERL
-
2Variables in Perl
-
3Comments in Perl
-
4for for each loops
-
5while do while loops
-
6Conditional statements
-
7More Conditional statements
-
Data Structures
-
9Arrays
-
10Array functions
-
11Hash in Perl
-
12Functions in Perl
-
13Blocks in Perl
-
14Access Modifiers in PERL
-
15Referencing and Dereferencing
-
16Special Variables in PERL
-
17File Handling
-
18Exception and error handling in PERL
-
19Including files or modules
-
20Sample PERL program
-
21Perl Module Library (CPAN)
-
22Downloading CPAN module
-
23Perl 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' );