Course Structure and Policies

Thomas J. Kennedy

Last modified: Jan 9, 2019
Contents:
Syllabus:
All students are responsible for reading the course syllabus and abiding by the policies described there.

1 Course Structure

1.1 Sessions

1.1.1 Recitations

Recitations will be used for special topics and for meetings with teams once the semester project is underway.

1.2 Readings

1.3 Assignments

1.3.1 Java

Students who have not taken CS 330 are encouraged to take CS 382 (Introduction to Java) as a pre-requisite or, at the very least, to work through that courses’s website during the first few weeks of the semester.

1.3.2 Project

A moderately large program on which you will work in teams of 4-6 people.

Five phases:

  1. Writing Requirements
  2. Planning for construction: writing user stories
  3. Early construction: build management, version control, story tracking, project website
  4. Middle construction: configuration management, documentation management, continuous integration
  5. Later construction: integration testing, analysis tools

In general, you will be evaluated upon process as much as upon you ability to produce working code.

The idea is to see if you have established a team process such that, if you had enough time, you would have eventually implemented the entire process.

1.3.3 Project teams

 

1.3.4 Project and recitations

 

The final three phases will be evaluated in part via a team meeting with the instructor.

1.4 Exams

2 Course Pre-requisites

3 Communications

Contact Info

Thomas J Kennedy Dragas 1100D
(757) 683-7725 tkennedy@cs.odu.edu

Important: The course name “CS350” should appear in the subject line of all course-related email.

Forums are also available on Blackboard for general discussions.

3.1 Office Hours

Office hours are posted online at http://www.cs.odu.edu/~tkennedy/

3.2 Course Forums

4 Important Policies

4.1 Late Submissions

… are not normally accepted. Exceptions may be made in cases of

Extensions to due dates will not be granted due to

4.2 Academic Honesty

ODU is governed by a student honor code.


Academic Honesty (cont)

4.3 Grading

Assignments: 15%
Semester project: 45%
Midterm exam: 15%
Final exam: 25%

5 Review Materials

I have generated a number of reviews for courses I teach. This includes:

As a general policy I make all three sets of reviews avialable to CS 350 and CS 330 students. You will find direct links to CS 350 Review Recordings throughout the outline. I will record additional reviews throughout the semester (as necessary).

6 Course Themes

Questions

6.1 Goals

6.2 Areas of Emphasis

6.2.1 Teamwork

6.2.2 Test-Driven development

Exemplified by the philosophy of “write the tests first, then design and write the code.”

This is easily justified when fixing bugs. You need to have a test handy that shows the bug causing the program to fail, so that you can run it (again and again) while you try to fix the bug. How else will you know that you have it fixed?

But test-driven development is really about how to do the initial design. Programmers are often lazy. If they write the code first, they often skimp on the testing because that seems like too much work for code that they are “sure” is correct. (Remember, all programmers are optimists – they always believe that their code is going to work “as soon as I fix this one bug”. The combination of unjustified optimism and laziness can be deadly!)

But if the tests are already there, and if it’s easy to run them (or, even better, hard not to run them – I’ll talk about that in just a moment), then programmers will actually do the testing on a regular basis.

And thinking about tests for special/boundary cases, etc., often helps you remember those cases when later doing the design and coding.

6.2.3 Build management

Making sure that you and others can build the system easily.

6.2.4 Version control

The ability to track changes in the software.

6.2.5 Configuration management

6.2.6 Documentation management