The first page of the exam will contain this information:

You have 50 minutes to complete this exam. You do not need to show templates (unless a problem states otherwise), but you may receive partial credit if you do. You also do not need to show test cases or examples of data definitions (unless a problem states otherwise), but you may develop them if they will help you write the programs.

You should provide a contract/purpose for any helper function you define.

Your programs may contain only the following DrRacket constructs:

define define-struct cond else local begin

and the following primitive operators:

empty? cons? cons first rest list append
     + - * / = < > <= >= 

string=? string-length symbol=? symbol? string? error filter map
and or not

set!
and the operators introduced by define-struct (including the set operators on structures)

You may, of course, use whatever constants are necessary (empty, true, false, 0, etc.)