Difference between revisions of "CSC103 Take-Home Exam 2013"

From dftwiki3
Jump to: navigation, search
Line 106: Line 106:
 
Your assignment is to recreate this sketch as closely as possible.  You may pick different colors for the text, the squares, and the circles, but their behavior should be (as much as you can) close to the behavior shown in the movie.
 
Your assignment is to recreate this sketch as closely as possible.  You may pick different colors for the text, the squares, and the circles, but their behavior should be (as much as you can) close to the behavior shown in the movie.
  
 +
<br />
 +
=Hints=
 +
<br />
 +
In Processing, you can ''nest'' statements.  For example, it is perfectly acceptable to use an ''if-statement'' inside another ''if-statement'', as illustrated below:
 +
<br />
 +
<source lang="java">
 +
 +
    if ( ... ) {
 +
        if ( ... ) {
 +
            ----------------;
 +
            ----------------;
 +
        }
 +
        else {
 +
            ----------------;
 +
            ----------------;
 +
      }
 +
  }
 +
 +
</source>
 
<br />
 
<br />
 
=Submission=
 
=Submission=

Revision as of 15:39, 8 October 2013

--D. Thiebaut (talk) 10:06, 25 September 2013 (EDT)



This exam will be a one-week take-home exam and will be released on 10/10/13. It is given under the rules of the Smith College Honor Code, and the work your turn in must reflect your individual work on this exam. You cannot discuss any of the details of this exam with anybody except me, your instructor (D. Thiebaut). If you have a question, please post it to Piazza, and make it private to your instructor only. I will answer it and make it public if I think everybody would benefit from the question and its answer. Piazza wil/should send you an update, or an email right away when something is posted, depending on how you set your profile. Questions will NOT be answered in person outside the last class time. The reason for this is to make sure everybody gets the same information from questions. Piazza is therefore the only system for you to ask questions.

The exam is due on 10/17/13, at 9:00 a.m.


Page under construction!
UnderConstruction.jpg























































...