Difference between revisions of "IB Computer Science 1"

From WLCS
Line 1: Line 1:
 
== Wednesday (11/17/10) ==
 
== Wednesday (11/17/10) ==
 
'''Warmup:'''
 
'''Warmup:'''
 +
* Assume you have the following code:
 +
<syntaxhighlight lang="Python" line>
 +
i = 0
 +
while i < 10:
 +
    print "All work and no play makes Jack a dull boy."
 +
    i = i + 1
 +
</syntaxhighlight>
 +
* What is the counter variable?
 +
* What is the condition of the loop? (i.e. when does it end?)
  
 
'''Agenda:'''
 
'''Agenda:'''

Revision as of 11:57, 17 November 2010

Wednesday (11/17/10)

Warmup:

  • Assume you have the following code:
1 i = 0
2 while i < 10:
3     print "All work and no play makes Jack a dull boy."
4     i = i + 1
  • What is the counter variable?
  • What is the condition of the loop? (i.e. when does it end?)

Agenda:

Monday (11/15/10)

Warmup:

  • Assume you have the following code:
1 a = 0
2 b = 1
3 c = 0
4 a = a + 1
5 c = c + 1
6 b = a * c
7 c = c + 1
  • What are the final values of a, b, and c?

Agenda:

  • Introduction to Iteration (looping)
    • while loops
    • counter variables
  • Looping practice
    • Print out all the numbers from 0-50
    • Print out all the numbers from 75 down to 25
    • Write a loop that prints out the first 100 even numbers
    • Prompt the user for a number and store it in a variable n, then print out the first n odd numbers (starting at 1) using a loop
    • Print out all the numbers that are divisible by 6 from 0 through 100
  • Guessing Game Assignment
  • Looping Exercises

Wednesday (11/10/10)

Warmup:

  • Complete the HTTLACS: Ch 5 exercises and demo to Mr. Bui

Agenda:

  • Introduction to GASP
  • Creating useful functions

Monday (11/8/10)

Warmup:

  1. Prompt the user to enter a decimal (float) number and store in variable x
  2. print int(x)
  3. print round(x)
  4. Test out your program using several numbers (e.g. 3.2, 4.5, 5.9)
  5. What do you think the int() and round() functions do?

Agenda:

  • Review return
  • Review doctests
  • Complete the exercises at the end of HTTLACS: Ch 5 (w/ doctests)

Thursday (11/4/10)

Warmup:

  • Define a function named slope(x1, y1, x2, y2) that takes the four listed parameters
  • Calculate the slope and store it in a variable m
  • print m

Agenda:

  • Return and go over 1st Quarter Exam
  • Re-introduction to Functions
    • return keyword
    • doctests
  • HTTLACS: Ch 5
  • Complete the exercises at the end of Chapter 5 (w/ doctests)

Monday (11/1/10)

Warmup:

  • Prompt the user to enter his/her grade (0-100)
  • Using if statements, do the following:
    • if the grade is greater than or equal to 90, then print "You have an A"
    • if the grade is less than 90 and the grade is greater than or equal to 80, then print "You have a B"
    • if the grade is less than 80 and the grade is greater than or equal to 70, then print "You have a C"
    • if the grade is less than 70 and the grade is greater than or equal to 60, then print "You have a D"
    • if the grade is less than 60, then print "You have an E"

Agenda:

Archives