On this page:
Overview
Setup
Submitting
1 Before Submitting
2 Common Problems
3 Files
4 Grade  Scope
HW Tasks

Homework 8

Last updated: Sun, 3 Dec 2023 21:00:21 -0500

Out: Mon Nov 27, 2023, 00:00 EST

Due: Sun Dec 03, 2023, 23:59 EST

Overview

In this assignment, we’ll extend the "CS450js Lang" programming language with functions!

This hw will be graded as follows:

  • correctness (18 pts)

  • design recipe (20 pts)

  • style (20 pts)

  • README (2 pts)

Total: 60 points

Setup

Create a new repository for this assignment by going to the CS450 Fall 2023 GitHub Organization page and clicking "New".

On the "Create a new repository" screen:
  • Name the repository <YOUR ACCOUNT NAME>-hw8 where <YOUR ACCOUNT NAME> is your GitHub account name.

    For example, if my GitHub account is cs450student then I would name my hw8 repository cs450student-hw8.

  • Mark the repository as Private.

  • Check "Add a README file".

  • Add a .gitignore file for "Racket" to automatically ignore temporarily files.

When done click "Create repository".

Starter Code

Here is a hw8 starter repo. In particular, it has a tests-from-lecture.rkt file that contains the test suite you all created together in lecture.

Note: This file is meant to help you test your code for correctness, but it does not replace the tests.rkt file that you must write (which must obviously be different from this file).

Submitting

1 Before Submitting

Before submitting, note:
  • Do not submit until all code has been thoroughly tested, independent of the autograder (if there is one), and you are reasonably sure the assignment is complete and correct.

    The autograder is not a software development tool so it should not be used as one.

  • If you submit and get an autograder error, this means the code you wrote is not complete and correct and it’s up to you to figure out why.

    The course staff is here and eager to help, of course, but cannot do so without details about what has already been tried. (For example, "why is the autograder giving an error?" is not something we can help with.)

  • The grading criteria (i.e., test suite) is subject to change. This means that the grade on the preliminary autograder test suite (if one is provided) is not the final grade.

2 Common Problems

Common submission problems:

3 Files

A submission must have the following files in the repository root:

Also, the repository must have appropriate commit messages. See How to Write a Git Commit Message if you are unsure how to write a commit message.

4 GradeScope

When ready, submit this assignment to GradeScope using the "GitHub" submission feature with your hw8 repository selected.

Submission link: GradeScope HW8

HW Tasks

As usual: