CS 1713 Introduction to Computer Science
Fall 2009 Final Exam Information

The final exam will last 150 minutes and consist of questions worth a total of 100 points.
Do not spend more than 1 minute per point when making a first pass through the exam.
This will give you time to go back to the harder problems.
Most likely, the exam will contain the following types of problems.
Point values are approximate and indicate how much time you should spend on the problem.

Note that you need to be able to complete a 10-point problem in about 10 minutes.

Practice writing the sort methods and time yourself to make sure you can do them fast enough.

Example Problem:
Design a class to represent a rectangle that can be drawn on the screen.
A rectangle has a position (x and y coordinates), a width, and a height.
A client should be able to get any of these four values, but not change them directly.
A client should be able to get the area of the rectangle and change the position of the rectangle by moving it horizontally by a given amount.
The class should implement Comparable based on the area.
What you produce should be able to be typed into eclipse and compile without errors.