Sonoma State University
Department of Computer Science
CS-460: Programming Languages

Course Description

This course provides a survey of the syntactic, semantic, and implementation features of functional, procedural, object-oriented, logic, and concurrent programming languages.

Prerequisites

Grade of C- or better in CS-252 (Introduction to Computer Organization) and CS-315 (Data Structures), or consent of instructor.

Instructor

Robert Bruce

Learning Outcomes

Upon successful completion of this course, students will be able to:

  1. Create a Concrete Syntax Tree using deterministic finite state machines and recursive descent.
  2. Define the syntax of formal programming languages using Backus-Naur Form (BNF).
  3. Describe characteristics of functional, logical, object-oriented, and scripting programming languages.
  4. Explain the importance of tokenization and lexical analysis as building blocks in the development of an interpreter or compiler for programming languages.
  5. Describe how Abstract Syntax Trees are different from Concrete Syntax Trees or Parse Trees.
  6. Describe how symbol tables are invaluable in the development of compilers and interpreters.

Required Texts/Readings

Textbook

  1. Michael Scott, Programming Language Pragmatics, Fourth edition.

Other Readings (optional references)

  1. Brian W. Kernighan and Dennis M. Ritchie, C Programming Language, 2nd edition
  2. Robert Mecklenburg, Managing Projects with GNU make, 3rd edition

Course Requirements

In addition to in-class exercises, students will be assigned the following programming assignments outside of class. The programming assignments below will be completed as part of a team. Everyone on the team receives the same grade for the programming assignments. Detailed instructions about these assignments will be posted to Canvas. A brief description of each assignment is below:

Programming assignment 1: Ignore comments

Using procedurally-driven deterministic finite state automaton (DFA), write a program in C or C++ to identify and ignore comments for a C-like programming language. Details for this assignment will be posted to Canvas.

Programming assignment 2: Tokenization

Given a C-like programming language grammar defined in Bacus-Naur Form (BNF), write a program in C or C++ that tokenizes an entire input file and displays the tokens as output. Details for this assignment will be posted to Canvas.

Programming assignment 3: Recursive Descent Parser

Given a C-like programming language grammar defined in Bacus-Naur Form (BNF), write a recursive descent parser in C or C++ with a procedurally-driven deterministic finite state automaton (DFA) to create a Concrete Syntax Tree (CST). Details for this assignment will be posted to Canvas.

Programming assignment 4: Symbol Table

Given a C-like programming language grammar defined in Bacus-Naur Form (BNF), write a program in C or C++ that creates a symbol table (a linked list) of all the defined variables (including their type and scope), and the names of all functions and procedures. Functions and procedures may also have an input parameter list of variables and types. These too should be present (with appropriate scope) in the symbol table. Lastly, functions have a return datatype which must be noted in the symbol table as well. Details for this assignment will be posted to Canvas.

Programming assignment 5: Abstract Syntax Tree

Given a C-like programming language grammar defined in Bacus-Naur Form (BNF), write a program in C or C++ that creates an Abstract Syntax Tree (AST) based on the Concrete Syntax Tree (CST) generated in programming assignment 3 (above). An abstract syntax tree is not a clone of the parse tree. Boolean and numeric expressions in the CST should be converted to postfix notation using the Shunting Yard Algorithm. Details for this assignment will be posted to Canvas.

Programming assignment 6: Interpreter

Write a program in C or C++ that can interpret and run applications for a C-like programming language grammar defined in Bacus-Naur Form (BNF). The interpreter must execute the program, keeping track of variables and values and the flow of control at all times. The interpreter must also account for possible syntax errors or run-time errors. Details for this assignment will be posted to Canvas.

Programming Project Report

Unlike the programming assignments one through six above, the programming project report is an individual assignment, not a team assignment. In the report, students will discuss their individual contributions and the contributions of your team mates. Additional questions pertaining to the report will be denoted on Canvas. Details for this assignment will be posted to Canvas.

Team Project Oral presentation

Each student team will present a demonstration of their project to the class. Individual team members will each speak about their individual contributions. Students will be graded individually on their ability to communicate in a clear and concise manner, the relevancy of supplemental visual material to support their presentation, and their timing. A detailed grading rubric will be posted on Canvas on how the oral presentation will be graded. Side note: clear and concise oral presentations are very important to practice before interviewing at companies in the corporate world.

Midterm Examination

The midterm exam will based-on chapters 1, 2, 3, 4, 5, 6, and 7 of Scott’s Programming Language Pragmatics. The exam will be comprised of open-ended questions. The exam will be closed-book. You may use one A4 sheet of paper (8.5 inches width by 11 inches length) for notes during the midterm examination. You may write notes on both sides of the sheet of paper.

Final Examination

The final exam will based-on chapters 8, 9, 10, 11, 12, and 14 of Scott’s Programming Language Pragmatics. The exam will be comprised of open-ended questions. The exam will be closed-book. You may use one A4 sheet of paper (8.5 inches width by 11 inches length) for notes during the final examination. You may write notes on both sides of the sheet of paper.

Grading Information

Assignment Percentage of Grade
In-class exercises 10%
Programming project assignments
30%
Programming Project Report 10%
Programming Project Presentation 10%
Midterm exam 20%
Final exam 20%
TOTAL 100%

† Graded as an individual
‡ Graded as a group (each member of the group gets the same grade)

Determination of Grades

Ultimately this course is graded A, B, C, D, or F. Percentage grades are rounded to the nearest whole number. For example, a grade of 92.4% will be rounded to 92% and result in a grade of "A minus". A grade of 92.5% will be rounded to 93% and result in a grade of "A".

Grading Scale

Percent range Grade
93% to 100% inclusive A
90% to 92% inclusive A-
87% to 89% inclusive B+
83% to 86% inclusive B
80% to 82% inclusive B-
77% to 79% inclusive C+
73% to 76% inclusive C
70% to 72% inclusive C-
67% to 69% inclusive D+
63% to 66% inclusive D
60% to 62% inclusive D-
Below 60% F

Grading Policies

Late assignments

Absent extenuating circumstances (illness, family emergency), late submissions will be accepted under the late policy until the advertised "Until" deadline on Canvas. The late policy is minus 5% per day, and never grows more than minus 50% markdown (as long as the assignment is submitted before the final deadline via Canvas).

Late exams and quizzes
  • There are no make-up exams.
  • Official proof of emergency required for missing an exam, project, or project presentation.

Course Schedule

Week Topics and Assignments Readings and Deadlines
Week 1:
Tuesday, August 20, 2024
Lecture: Success in CS-460: Programming Languages Chapter 1: Introduction
Week 1:
Thursday, August 22, 2024
Exercise: Team Formation  
Week 2:
Tuesday, August 27, 2024
Lecture: Introduction to exercise 1a
Exercise 1a: Regular Expressions
Chapter 2: Programming Language Syntax
Week 2:
Thursday, August 29, 2024
Exercise 1b: Regular Expressions  
Week 3:
Tuesday, September 3, 2024
Lecture: Introduction to exercise 2a
Exercise 2a: Tokenization
Chapter 3: Names, Scopes, and Bindings
Week 3:
Thursday, September 5, 2024
Exercise 2b: Tokenization  
Week 4:
Tuesday, September 10, 2024
Lecture: Introduction to exercise 3a
Exercise 3a: Creating a Concrete Syntax Tree
Chapter 4: Semantic Analysis
Week 4:
Thursday, September 12, 2024
Exercise 3b: Creating a Concrete Syntax Tree DUE: Programming Assignment 1: Ignore Comments
Week 5:
Tuesday, September 17, 2024
Lecture: Introduction to exercise 4a
Exercise 4a: Creating a Symbol Table
Chapter 6: Control Flow
Week 5:
Thursday, September 19, 2024
Exercise 4b: Creating a Symbol Table  
Week 6:
Tuesday, September 24, 2024
Lecture: Introduction to exercise 5a
Supplementary material: Converting a numerical expression into postfix using Shunting Yard algorithm
Exercise 5a: Converting numerical expressions from infix to postfix
Chapter 7: Type Systems
DUE: Programming Assignment 2: Tokenization
Week 6:
Thursday, September 26, 2024
Lecture: Introduction to exercise 5b
Supplementary material: Converting a Boolean expression into postfix using Shunting Yard algorithm
Exercise 5b: Converting Boolean expressions from infix to postfix
 
Week 7:
Tuesday, October 1, 2024
Lecture: Introduction to exercise 6a
Exercise 6a: Creating an Abstract Syntax Tree
Chapter 8: Composite Types
Week 7:
Thursday, October 3, 2024
Exercise 6b: Creating an Abstract Syntax Tree  
Week 8:
Tuesday, October 8, 2024
Exercise 7a (exercise on p. 346, chapter 7) Chapter 9: Subroutines and Control Abstraction
Week 8:
Thursday, October 10, 2024
Exercise 7b (exercise on p. 344, chapter 7)  
Week 9:
Tuesday, October 15, 2024
MIDTERM EXAM  
Week 9:
Thursday, October 17, 2024
Exercise 8 (exercise on p. 404, chapter 8) Chapter 10: Data Abstraction and Object Orientation
Programming Assignment 3: Recursive Descent Parser
Week 10:
Tuesday, October 22, 2024
Exercise 9a (exercise on p. 405, chapter 8)  
Week 10:
Thursday, October 24, 2024
Exercise 9b (exercise on p. 465, chapter 9) Chapter 11: Functional Languages
Week 11:
Tuesday, October 29, 2024
Exercise 10a (exercise on p. 467, chapter 9) DUE: Programming Assignment 4: Symbol Table
Week 11:
Thursday, October 31, 2024
Exercise 10b (exercise on p. 527, chapter 10) Chapter 12: Logic Languages
Week 12:
Tuesday, November 5, 2024
Exercise 11a (Programming in GNU Common Lisp)  
Week 12:
Thursday, November 7, 2024
Exercise 11b (Programming in GNU Common Lisp) Chapter 14: Scripting Languages
DUE: Programming Assignment 5: Abstract Syntax Tree
Week 13:
Tuesday, November 12, 2024
Exercise 12a (Programming in Python)  
Week 13:
Thursday, November 14, 2024
Exercise 12b (Programming in Python) Chapter 15: Building a Runnable Program
Week 14:
Tuesday, November 19, 2024
Exercise 13a: Scripting programming in BASH  
Week 14:
Thursday, November 21, 2024
Exercise 13b: Scripting programming in BASH Chapter 16: Run-Time Program Management
Week 15:
Tuesday, November 26, 2024
Exercise 14: Scripting Program in Perl  
Week 15:
Tuesday, December 3, 2024
Exercise 15: Scripting programming in PHP Chapter 17: Code Improvement
DUE: Programming Assignment 6: Interpreter
Week 16:
Thursday, December 5, 2024
Programming Project Presentation DUE: Programming Project Presentation
DUE: Project Report
December 10, 2024 FINAL EXAM