Difference between revisions of "Computer Science I"

From WLCS
Line 6: Line 6:
 
* [[Print Shapes Exercises]]
 
* [[Print Shapes Exercises]]
 
* [[Guessing Game Assignment]]
 
* [[Guessing Game Assignment]]
* HTTLACS: Ch6 #1-4
+
* HTTLACS: Ch6 #1-4 - Print out and turn in when complete
  
 
'''Agenda - IB:'''
 
'''Agenda - IB:'''
* HTTLACS: Ch6 #1-4
+
* HTTLACS: Ch6 #1-4 - Print out and turn in when complete
 
* [[Looping Exercises]]
 
* [[Looping Exercises]]
 
* Introduction to Strings
 
* Introduction to Strings
* Complete HTTLACS: Ch7 #1, 2, 5, 6
+
* Complete HTTLACS: Ch7 #1, 2, 5, 6 - Print out and turn in when complete
* [[E-mail Harvester Assignment]]
+
* [[E-mail Harvester Assignment]] - Demo to Mr. Bui
 
* [[Pig Latin Translator]]
 
* [[Pig Latin Translator]]
  

Revision as of 09:17, 8 January 2009

Thurdsay (1/8/09)

  • Demo missing work

Agenda - Regular:

Agenda - IB:

Tuesday (1/6/09)

Warmup:

  • Describe in less than ten words what you did over winter break
    • Mr. Bui's example: DVDs, food, college recommendations
  • Assume you have the following code:
i = 0
n = 1
while i < 25:
  n += 2
  i += 1
  • WITHOUT using your computer, what are the final values of i and n?

Agenda - All:

  • Looping warmup review
  • break keyword
  • Assume you have the following code:
i = 0
n = 1
while i < 25:
  n += 2
  if n > 10:
    break
  i += 1
  • WITHOUT using your computer, what are the final values of i and n?
  • Demo missing work

Agenda - Regular:

Agenda - IB:

Archives