CISC2000: How are labs graded?

Approximately 70% points are for the correct implementation of required functionalities.

Late labs lose points every day during until the grace period ends, then the lab closes. The first six labs and all minilabs have about a week of grace. Later labs have 2 weeks or more.

As much as 30% of the points are reserved for following directions and good coding style/practice:

Quick Hints:

You are strongly encouraged to pay attention to indentation level in the first place, as doing so will help you see the logic structure of your code, and minimze chances of making mistakes. Most IDEs will help you apply indentation rule.

If you haven't paid enough attention to style when you first type your program, but want to go back to fix indentation (in order to understand some logic or syntax errors). There is the following quick fix. The following command can be used to fix the indentation of a program. Note, run this program from a command line (terminal).

$indent lab4.cpp 
This command will read lab4.cpp and adjust indentation for every lines in the program.