Difference between revisions of "Computer Science I"

From WLCS
Line 1: Line 1:
 +
== Friday (4/17/09) ==
 +
'''Warmup:'''
 +
* Assume you have the following code, identify the final value of x
 +
 +
<source lang="python">
 +
x = 1
 +
y = 0
 +
while y < 15:
 +
  x += 2
 +
  y += 1
 +
</source
 +
 +
'''Agenda - Regular:'''
 +
* Complete Pong
 +
* [[Item collection game]
 +
 +
'''Agenda - IB:'''
 +
* Complete [[List Exercises]]
 +
* Recreate the [[Robot game]] using lists
 +
** You will create a list for all the X coordinates, a list for all the Y coordinates, and a list for all the Images
 +
** Use loops to cycle through all the lists
 +
** Within each of the loops, you can use if statements to check for collisions and the like
 +
* [[Dodge game]]
 +
 +
== Wednesday (4/15/09) ==
 +
* Complete missing assignments
 +
 +
== Friday (4/3/09) ==
 +
* 3rd Quarter Exam
 +
 
== Wednesday (4/1/09) ==
 
== Wednesday (4/1/09) ==
 
'''Agenda:'''
 
'''Agenda:'''

Revision as of 08:24, 17 April 2009

Friday (4/17/09)

Warmup:

  • Assume you have the following code, identify the final value of x

<source lang="python"> x = 1 y = 0 while y < 15:

 x += 2
 y += 1

</source

Agenda - Regular:

  • Complete Pong
  • [[Item collection game]

Agenda - IB:

  • Complete List Exercises
  • Recreate the Robot game using lists
    • You will create a list for all the X coordinates, a list for all the Y coordinates, and a list for all the Images
    • Use loops to cycle through all the lists
    • Within each of the loops, you can use if statements to check for collisions and the like
  • Dodge game

Wednesday (4/15/09)

  • Complete missing assignments

Friday (4/3/09)

  • 3rd Quarter Exam

Wednesday (4/1/09)

Agenda:

  • Demo all completed assignments
  • 3rd Quarter Exam Review
    • Regular:
      • Loops
      • Strings
      • GASP!
    • IB:
      • Loops
      • Lists
      • GASP!

Archives