Difference between revisions of "IBCS1 - October"

From WLCS
(Removing all content from page)
Line 1: Line 1:
 +
== Tuesday - Friday (10/27/09 - 10/30/09) ==
 +
* Complete the HTTLACS: Ch 4 GASP exercise and demo to Mr. Bui
 +
* '''Work through HTTLACS: Ch 5''' and by work through, Mr. Bui means that you should try out all the code.
 +
* Complete the HTTLACS: Ch 5 exercises
  
 +
== Monday (10/26/09) ==
 +
* 1st Quarter Exam
 +
 +
== Friday (10/23/09) ==
 +
* 1st Quarter Exam Review
 +
** HTTLACS: Ch 1-4.7
 +
* [[MPAA calculator assignment]]
 +
* [[Geek Flow Chart Assignment]]
 +
 +
== Monday - Thursday (10/19/09 - 10/22/09) ==
 +
'''Warmup:'''
 +
* What does the following code print?
 +
 +
<source lang="Python">
 +
x = 9
 +
y = 10
 +
z = 4
 +
 +
if x < y:
 +
  if z < 0:
 +
    print "Washington"
 +
  else:
 +
    print "Lee"
 +
else:
 +
  print "Generals"
 +
</source>
 +
 +
'''Agenda:'''
 +
* [[Quadratic Formula Assignment]]
 +
* Complete the HTTLACS: Chapter 4 Exercises #1-5 and upload to SchoolWebLockers
 +
* [[MPAA calculator assignment]]
 +
* [[Geek Flow Chart Assignment]]
 +
 +
== Thursday (10/15/09) ==
 +
'''Warmup:'''
 +
* What do the following conditions evaluate to?
 +
 +
<source lang="Python">
 +
not(False)
 +
True or False
 +
False and False
 +
True and False
 +
not(True or False)
 +
True or True
 +
False and True
 +
False or True
 +
not(False) and True
 +
not(True) or False
 +
not(True) or True
 +
</source>
 +
 +
'''Agenda:'''
 +
* [[Quadratic Formula Assignment]]
 +
* Complete the HTTLACS: Chapter 4 Exercises #1-5 and upload to SchoolWebLockers
 +
* [[MPAA calculator assignment]]
 +
* [[Geek Flow Chart Assignment]]
 +
 +
== Tuesday - Wednesday (10/13/09 - 10/14/09) ==
 +
* [[Quadratic Formula Assignment]]
 +
* Complete the HTTLACS: Chapter 4 Exercises #1-5 and upload to SchoolWebLockers
 +
* [[MPAA calculator assignment]]
 +
* [[Geek Flow Chart Assignment]]
 +
 +
== Thursday - Friday (10/7/09 - 10/8/09) ==
 +
'''Warmup:'''
 +
* Create a python script that prompts the user for three integer variables: month, day, and year
 +
* Print your birthday using the variables
 +
* Your birthday should use the following format: M/D/Y
 +
 +
'''Agenda:'''
 +
* Complete the [[Quadratic Formula Assignment]]
 +
* Introduction to Python Conditionals (if-statement)
 +
** [http://openbookproject.net/thinkcs/python/english2e/ch04.html How to Think Like a Computer Scientist: Chapter 4]
 +
** [[Media:BooleanLogic.ppt]]
 +
* Complete the HTTLACS: Chapter 4 Exercises #1-5 and upload to SchoolWebLockers
 +
* [[MPAA calculator assignment]]
 +
 +
== Monday - Tuesday (10/5/09 - 10/6/09) ==
 +
* Introduction to Python Functions
 +
* [http://openbookproject.net/thinkcs/python/english2e/ch03.html How to Think Like a Computer Scientist: Chapter 3]
 +
* Complete the HTTLACS: Chapter 3 Exercises and upload to SchoolWebLockers
 +
 +
== Thursday (10/1/09) ==
 +
* Introduction to Python
 +
* [http://openbookproject.net/thinkcs/python/english2e/ch01.html How to Think Like a Computer Scientist: Chapter 1]
 +
* Complete the HTTLACS: Chapter 1 Exercises and upload to SchoolWebLockers
 +
* [http://openbookproject.net/thinkcs/python/english2e/ch02.html HTTLACS: Ch 2]
 +
* Complete the HTTLACS: Chapter 2 Exercises and upload to SchoolWebLockers
 +
 +
== Archives ==
 +
* [[IBCS1 - May]]
 +
* [[IBCS1 - April]]
 +
* [[IBCS1 - March]]
 +
* [[IBCS1 - February]]
 +
* [[IBCS1 - January]]
 +
* [[IBCS1 - December]]
 +
* [[IBCS1 - November]]
 +
* [[IBCS1 - October]]
 +
* [[IBCS1 - September]]

Revision as of 10:07, 3 May 2010

Tuesday - Friday (10/27/09 - 10/30/09)

  • Complete the HTTLACS: Ch 4 GASP exercise and demo to Mr. Bui
  • Work through HTTLACS: Ch 5 and by work through, Mr. Bui means that you should try out all the code.
  • Complete the HTTLACS: Ch 5 exercises

Monday (10/26/09)

  • 1st Quarter Exam

Friday (10/23/09)

Monday - Thursday (10/19/09 - 10/22/09)

Warmup:

  • What does the following code print?
x = 9
y = 10
z = 4

if x < y:
  if z < 0:
    print "Washington"
  else:
    print "Lee"
else:
  print "Generals"

Agenda:

Thursday (10/15/09)

Warmup:

  • What do the following conditions evaluate to?
not(False)
True or False
False and False
True and False
not(True or False)
True or True
False and True
False or True
not(False) and True
not(True) or False
not(True) or True

Agenda:

Tuesday - Wednesday (10/13/09 - 10/14/09)

Thursday - Friday (10/7/09 - 10/8/09)

Warmup:

  • Create a python script that prompts the user for three integer variables: month, day, and year
  • Print your birthday using the variables
  • Your birthday should use the following format: M/D/Y

Agenda:

Monday - Tuesday (10/5/09 - 10/6/09)

Thursday (10/1/09)

Archives