Com S 342 - Principles of Programming Languages


General Info.
Old Course Homepage
Old About Com S 342
Old Contact Info
Old Syllabus

Homework & Grades
Old Grading Policies
Old Homework Directory
Old Exams

Reference
Q & A
Old Handouts
Old Meeting outlines
Old Resources
Code Examples
Running Scheme
Scheme Library

Links
Department
ISU

Valid HTML 4.0!
Valid CSS!
 

About Computer Science 342

This page provides general information about the Fall 2001 offering of Computer Science 342. The course home page is http://www.cs.iastate.edu/~cs342, where other supporting information can be found through the links on the left.

This page is organized as follows:

  1. Meetings
  2. Course Textbooks
  3. Computer Accounts
  4. Course Description
  5. Objectives
  6. Prerequisites
  7. Acknowledgements

Meeting Times

Lectures

Lecture attendance is required. Meeting times and locations are as follows:

Tuesdays and Thursdays at 2:10-3:30pm, Pearson 205

Discussions

Attendance at discussion sections is strongly recommended. Meeting times and locations are as follows:

Section A, Wednesday 3:10pm, Atanasoff B29, Facundo Bromberg's
Section B, Wednesday 2:10pm, Atanasoff B29, George Ushakov's

Return to top

Course Textbooks

There are two required texts for the course:

There are two optional (but recommended) texts for the course:

  • Structure and Interpretation of Computer Programs (second edition), by Abelson, Harold, and Gerald J. Sussman with Julie Sussman. MIT Press, Cambridge, 1996.
  • Revised5 Report on the Algorithmic Programming Language Scheme, Richard Kelsey, William Clinger, and Jonathan Rees, editors, 1998. You can get this report on-line from our resources page.

All the texts, plus some additional resources, are on reserve at the Parks library.

Return to top

Computer Accounts

You must have an account on the department Unix machines.

Return to top

Course Description

From the Iowa State University Bulletin: "Organization of programming languages emphasizing language design concepts and semantics. Study of language features and major programming paradigms, especially functional programming. Programming projects."

Explanation: The current in vogue computer language is constantly changing. Ten years ago it might have been Pascal or C; 5 years ago it was probably C++; today it is probably Java. There are a host of other languages (Perl, Visual Basic, JavaScript, Python, Haskell, etc...) that are applicable to their own classes of problems and programming styles. Therefore, to have a career in computer science means having to learn new programming languages.

To meet your need to learn new programming langauges quickly, and to help you work better with the languages you do use, this course seeks to provide a forum where you can develop an understanding of the basic design decisions that are part of every programming language. Things like:

  • How does one divide programs into manageable pieces?
  • What conceptual models can be used for translating a real world problems into programs?
  • What are good ways to express programming idioms?
  • What features must a programming language provide?
  • What additional features will help simplify things for users?
  • How does one precisely describe a programming language?
  • How should a language be implemented?

Our technique for studying these questions will be two-fold. First we will learn the functional programming language Scheme. Functional programming is much different from the imperative programming that most of us are used to from languages like C++, Visual Basic, or Java. Learning functional programming helps one to develop a more thorough understanding of the various ways of organizing programs.

After we have developed some experience with Scheme we will develop a series of interpreters for various small programming languages. These interpreters allow us to experiment with various design decisions, how those decisions interact, and how different language features are implemented.

Return to top

Objectives

The general objectives for this course are divided into two parts: a set of essential objectives, and a set of enrichment objectives. The essential objectives will be helpful for your career as a computer scientist; hence we want to help you to master them. You are encouraged to explore the enrichment objectives both for their own sake and because learning more about those will help deepen your understanding of the essential objectives.

Essential Objectives

In one sentence, the main objective is that you will have a deep, working knowledge of the functional paradigm and the key ideas used in modern programming languages. In more detail the essential objectives for this course are that you will be able to:

  • Write and modify programs using a mostly-functional style. This means programming that makes effective use of the abstraction mechanisms of functional languages, such as higher-order functions (functions that take functions as arguments and return functions as results) to achieve generality and abstraction.

  • Write and modify programs that make effective use of data abstraction.

  • Modify interpreters to change or enhance their behavior so as to implement various features of programming languages such as: control flow, variables, recursion, scoping, syntactic sugars, arrays, parameter passing mechanisms, type checking, objects, classes, and inheritance.

  • Write programs using such features, and explain, using appropriate terminology, the user-visible behavior of such programs.

  • Explain, using appropriate terminology, the data structures and algorithms used in interpreters to implement such features.

  • Compare alternatives in the design and implementation of such features.

Conditions

You will be permitted to use the textbook and course notes for tasks involving programming, but not during tests. On tests you may be permitted a small amount of reference material.

Justification

The functional style is one answer to the question: "What are good ways to program?" It also represents one major way to organize a programming language for parallel processing. Even if you do not become a programmer, the ideas of functional programming (function abstraction, referential transparency, etc.) have important applications in all areas of Computer Science (such as software specification, algorithm design, and of course in manipulation and specification of programming languages). These ideas also have application in many other contexts such as mathematics and engineering.

Data abstraction is a key idea for allowing programs to be easily modifiable. It forms the basis for the object-oriented style of programming.

One specific benefit of achieving these objectives is that your understanding will help you learn new languages quickly, by mapping key ideas and concepts from this class into the new language's syntax and semantics. For example, Java and other object-oriented languages (such as Smalltalk-80) use the "indirect model" of storage, which will be unfamiliar to you if you've programmed only in C++, C, Pascal, or Ada (all of which use the "direct model"). We will study the indirect model in detail, and you will gain practical programming experience with it, using Scheme. Learning this and other key ideas will also help you read (or write!) a new language's reference manual.

More importantly, understanding of fundamental concepts and run time implementation ideas will help you to better understand whatever language you program in; this will help you program more effectively. Being able to program better will also give you increased job satisfaction.

Enrichment Objectives

Enrichment objectives could be multiplied without limit, but the following seem most important or most easily taught using the course text. Following each of the enrichment objectives is a brief justification.

  • Design or critically evaluate design alternatives for languages and language features by careful consideration of their semantics.

    In designing software you will often be confronted with decisions about features that resemble those found in programming languages. This is particularly true for the design of user-interfaces and abstract data types. For example, a database management system has to deal with names for (say) relations, and thus must have scope rules; it will also have (difficult) type-checking problems, its query language will have control-flow issues, there will be demands for sweeter syntax, etc. The basic principles taught in this course can help with such design decisions, and can provide guidance for overall designs. Such skills are also important in judging whole languages, for example if you need to decide on a new language for new programming project, or if you become a manager of a group of programmers.

  • Be able to write the types of functions and use them in writing software.

    Types are an important way to summarize the behavior of functions, and a key way to check the basic sanity of software. Although types are best checked automatically by software tools, an understanding of them is important for writing such tools, and for aiding the quick construction of correct software.

  • Use algebraic techniques to modify, derive, and prove programs correct.

    Such techniques are a powerful aid in writing sophisticated programs and in reasoning about them. They represent the future of software engineering, which lies in design to specification (as opposed to debugging).

  • Explain and answer questions about the features found in widely-used programming languages, such as Perl, C, C++, Java, Visual Basic, etc.

    This is a good way to deepen your understanding of such features. It also helps in informal or technical discussions.

  • Explain and answer questions about design principles such as regularity, the zero-one-many principle, orthogonality, etc.

    These principles form good rules-of-thumb that you can use in designing programs or languages.

Return to top

Prerequisites

The formal prerequisites in the Iowa State catalog are successful completion of Com S 321, English 104, Com S 330 or Cpr E 310, and either Com S 309 or Com S 361.

Return to top

Acknowledgements

My original ideas for this course at Iowa State were developed with the help of Kelvin Nilsen. Final exams for similar courses at other universities were provided by Kim Bruce (Williams College), Sam Kamin (University of Illinois), Dan Friedman and J. Michael Ashley (Indiana), and John Mitchell (Stanford); these helped provide perspective on what is important for such a course. Thanks also to Simanta Mitra for discussions about variations of this course taught at Iowa State. For this version of the course, I owe a great deal of thanks to Clyde Ruby, who was my TA and then an instructor for the course and who provided much of the infrastructure for the course. I also owe many thanks to Curtis Clifton at Iowa State for collaboration much work on these web pages, for collaborative discussions about the course, and for collaboration on the Scheme type checker we sometimes use. Further thanks are due to authors of the textbooks we have used. Thanks all!

Return to top

Last modified Monday, January 12, 2004.

This web page is for the Fall 2001 offering of Com S 342 at Iowa State University. The details of this course are subject to change as experience dictates. You will be informed of any changes. Thanks to Curtis Clifton for help with these web pages. Please direct any comments or questions to Gary Leavens at leavens@cs-DOT-iastate-DOT-edu.