CS 340: Software Design (Fall '04)
[Schedule] [Programs][Syllabus] [Resources] [Notes] [Grades]

Syllabus

T R 11 - 12:15, W 12 - 12:50, BH 309
[General] [Grading Criteria] [Academic Dishonesty]

Instructor: Dale Reed
Office: SEO 917
Phone: (312) 413-9478
email: reed @ uic.edu
On the Web: http://logos.eecs.uic.edu/reed
Office Hours: See above web page
Prerequisites: CS 202
Text:

Required:

  1. Ivor Horton, Beginning Java 2 SDK 1.4 Edition, Wrox/Wiley 2003, ISBN: 0 764 54365 2,. $50.
  2. Barbara Liskov, Program Development in Java, Addison-Wesley 2001, ISBN: 0 201 65768 6, $?.

Optional:

  1. Kathy Walrath et. al., JFC Swing Tutorial 2nd Edition, Addison-Wesley/Sun Microsystems 2004, ISBN: 0 201 91467 0, $50
  2. Joshua Bloch, Effective Java Programming Language Guide, Addison-Wesley/Sun Microsystems 2001, ISBN:0 201 31005 8
TA:

Talha Muhammad, mtalha2@ uic.edu
Office Location: 1006 SEO (10th floor), (312) 996-6007
Office Hours: M W 1 - 3

General

Make sure that you are on the class email list. Please send me email requesting to be added to the list if you do not receive email from me by the beginning of the second week of class. Your class email listing must be your UIC email. Forward your mail from there if you generally read your mail somewhere else. I'm assuming students check email every day. All critical announcements, changes to assignments, etc. will be distributed via email. Be sure to check the course web page for further information, handouts, assignment descriptions, and hints.

You will be given the opportunity to take a make-up quiz or exam only in cases of medical or personal emergencies, which must be verified. If such an emergency occurs, call me or leave a note (or phone message) with the department secretary as soon as possible. If you will be out of town when an exam is scheduled, I must be told in advance and may require you to take the exam early. Otherwise, if you miss an exam you will receive 0 points.

You are responsible for all information (handouts, announcements, notes, etc.) covered during class. Note that if you register late you are responsible for any material and assignments missed. You should ask fellow classmates for missed information, not the instructor or the T.A.

No incompletes will be given for poor performance in the course. An incomplete can only be given if there are extenuating circumstances and the student has at least a 'C' average in the course. No extra work or extra credit will be given.

If you feel that you deserve more points than you have been given on a quiz, assignment, or test, you must see the instructor about this within one week of the time the work in question is first returned to the class. After this deadline, no claims will be considered, justifiable or not.

As a rule-of-thumb, I assume that for every hour spent in class each week, you will spend at least 2 hours a week outside of class working on readings and assignments.

Grading Criteria

Letter grades are assigned on a curve at the end of the semester. Current grades will be posted on the grades page.

Written Homework Assignments (?)

5%
Programming Projects 30%
Midterm #1
15%
Midterm #2
20%
Final Exam
25%
Total:
100%
 

If no homework sets are assigned, that 5% will be added to the total amount the Programming Projects are worth. A few extra credit points may be given for good citizenship for those who demonstrate consistent helpfulness in the course online forum (e.g. Blackboard).

Program Grading Criteria

Each program will be graded out of 100 points as follows.

55% Runs correctly: conforms to assignment description for input and output, follows instructions given. Make sure to test your program thoroughly.
45% Programming style, further broken down as follows:
10% Meaningful Identifier Names. Identifier names should indicate their purpose. Names should be words separated using capitalization, such as gradesSum. Short loops of ~ 5 lines can use loop counter variables such as i or j.
10% Comments. Every function must have a short description stating the purpose of the function, what it receives, and what it returns. Comments should be easily identifiable. I should be able to understand your program by reading only the comments. Also include a header at the top of your program (see example below) that must include lab day and TA name.
10% Decomposition. A segment of code that appears more than once should be extracted to form a separate method (in Java) or function (in C). Methods/Functions should be no longer than around 50 lines. Objects are used appropriately
10% Appropriate data and control structures: Global variables should be avoided and used only when necessary. Method/Function parameters should be used instead. Appropriate looping and decision structures used.This may not apply to early programs that don't use methods/functions.
5% Code Layout. Different nested levels should have different indentation, where statements at the same level should have the same indentation. Indent at least 3 spaces. Use either spaces or tabs consistently
100 Total Points

 

Each program should include a descriptive header at the top of the first page which must have at least as much information as the following:

/** --------------------------------------------- 
* This program implements a calculator that does * addition, subtraction, multiplication, and division.
*
* Class: CS 107, Spring 2004 * Lab: Englebert Humberdink, Wed. 6:00 AM
* System: BlueJ 1.3, jsdk 1.4.2, Windows XP
*
* @author Dale Reed
* @version January 16, 2004 * ----------------------------------------------
*/
Additionally your program must print out your name, assignment number and name, TA name and lab information. For instance, if your first program assignment was called "Average the Numbers," then when you run your program the first thing that should appear on the screen is something like:
   Author: Dale Reed
   Program: #1, Average the Numbers
   TA: Englebert Humberdink, T 4-5 

Do not modify your program after it has been turned in. In case of a turnin problem, the last modification date of your original program can still be verified. If you want to change it, make a copy first.

Experience has shown that students who develop their programs on PC's and then port them over sometimes encounter mysterious problems. Plan ahead, since no late programs are accepted.

Academic Dishonesty

Any student caught cheating on an exam or program will automatically fail the course and may be referred to the department chair and/or dean.

When writing programs, you may consult with me or the TA at any stage of your program development. It helps if you bring a current print-out. You may seek help about the system or the editor from anyone at any time.

To avoid cheating via collaboration, do not show any other classmates your code. If a classmate consults you for help after attempting to run his or her program, you may assist in determining why his or her code doesn't work, but refrain from suggesting specific new code. Do not lead your classmates into temptation: guard your print-outs. We intend to use an automatic cheating-verification program called MOSS that is capable of detecting partial logical similarities. Don't even take the risk.

You may not get help of any kind from anyone else for the midterm and final exams. These exams must be exclusively your own


[CS Dept.] [UIC] [Prof. Reed]