Difference between revisions of "Pascal (language)"

(Created page with 'History The Pascal programming language was originally developed by Niklaus Wirth, a member of the International Federation of Information Processing (IFIP) Working Group 2.1. P…')
 
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
History
+
==History==
  
 
The Pascal programming language was originally developed by Niklaus Wirth, a member of the International Federation of Information Processing (IFIP) Working Group 2.1. Professor Niklaus Wirth developed Pascal to provide features that were lacking in other languages of the time. His principle objectives for Pascal were for the language to be efficent to implement and run, allow for the development of well structured and well organized programs, and to serve as a vehicle for the teaching of the important concepts of computer programming. Pascal, which was named after the mathematician Blaise Pascal, is a direct descendent from ALGOL 60, which Wirth helped develop. Pascal also draws programming components from ALGOL 68 and ALGOL-W. The original published definition for the Pascal language appeared in 1971 with latter revisons published in 1973. It was designed to teach programming techiques and topics to college students and was the language of choice to do so from the late 1960's to the late 1980's.  
 
The Pascal programming language was originally developed by Niklaus Wirth, a member of the International Federation of Information Processing (IFIP) Working Group 2.1. Professor Niklaus Wirth developed Pascal to provide features that were lacking in other languages of the time. His principle objectives for Pascal were for the language to be efficent to implement and run, allow for the development of well structured and well organized programs, and to serve as a vehicle for the teaching of the important concepts of computer programming. Pascal, which was named after the mathematician Blaise Pascal, is a direct descendent from ALGOL 60, which Wirth helped develop. Pascal also draws programming components from ALGOL 68 and ALGOL-W. The original published definition for the Pascal language appeared in 1971 with latter revisons published in 1973. It was designed to teach programming techiques and topics to college students and was the language of choice to do so from the late 1960's to the late 1980's.  
  
Significant Language Features
+
==Significant Language Features==
  
 
Pascal contains some significant language features that allow it to used as a powerful learning tool in introducing structured programming techniques to students :  
 
Pascal contains some significant language features that allow it to used as a powerful learning tool in introducing structured programming techniques to students :  
 
Built in Data Types- Pascal contains it's own built in data types of Integer, Real, Character, and Boolean.
 
Built in Data Types- Pascal contains it's own built in data types of Integer, Real, Character, and Boolean.
 
User defined Data Types - Has the ability to define scalar types as well as subranges of those data types.
 
User defined Data Types - Has the ability to define scalar types as well as subranges of those data types.
Provides a defined set of Data Sturctures- These data structures include Arrays, Records, Files and Sets.
+
Provides a defined set of Data Structures- These data structures include Arrays, Records, Files and Sets.
 
Has a strong data typing element - Pascal compliers can diagnose an incompatible assignment of one type to a variable to another type.
 
Has a strong data typing element - Pascal compliers can diagnose an incompatible assignment of one type to a variable to another type.
 
Supports Structured Programming - This is accomplished through the use of subprograms called procedures and functions.
 
Supports Structured Programming - This is accomplished through the use of subprograms called procedures and functions.
 
Simplicity and Expressivity - Because the language is simple and expressive in nature it allows for effective teaching of computer programming techniques.
 
Simplicity and Expressivity - Because the language is simple and expressive in nature it allows for effective teaching of computer programming techniques.
 
{{wikify}}
 

Latest revision as of 15:37, 1 December 2015

History

The Pascal programming language was originally developed by Niklaus Wirth, a member of the International Federation of Information Processing (IFIP) Working Group 2.1. Professor Niklaus Wirth developed Pascal to provide features that were lacking in other languages of the time. His principle objectives for Pascal were for the language to be efficent to implement and run, allow for the development of well structured and well organized programs, and to serve as a vehicle for the teaching of the important concepts of computer programming. Pascal, which was named after the mathematician Blaise Pascal, is a direct descendent from ALGOL 60, which Wirth helped develop. Pascal also draws programming components from ALGOL 68 and ALGOL-W. The original published definition for the Pascal language appeared in 1971 with latter revisons published in 1973. It was designed to teach programming techiques and topics to college students and was the language of choice to do so from the late 1960's to the late 1980's.

Significant Language Features

Pascal contains some significant language features that allow it to used as a powerful learning tool in introducing structured programming techniques to students : Built in Data Types- Pascal contains it's own built in data types of Integer, Real, Character, and Boolean. User defined Data Types - Has the ability to define scalar types as well as subranges of those data types. Provides a defined set of Data Structures- These data structures include Arrays, Records, Files and Sets. Has a strong data typing element - Pascal compliers can diagnose an incompatible assignment of one type to a variable to another type. Supports Structured Programming - This is accomplished through the use of subprograms called procedures and functions. Simplicity and Expressivity - Because the language is simple and expressive in nature it allows for effective teaching of computer programming techniques.