Difference between revisions of "IB Computer Science 1"

From WLCS
 
Line 1: Line 1:
== Wednesday - Thursday (11/14/12 - 11/15/12) ==
+
== [[IBCS1 - Archives]] ==
* Order of Operations Redemption Quiz 2
 
* Demo [[Turtle - Looping Assignment]]
 
* Complete [[Turtle - Graphing Calculator]]
 
 
 
== Tuesday (11/13/12) ==
 
'''Agenda:'''
 
* VA Workplace Readiness Assessment Pre-test (1 hr)
 
** There are on-screen tools (e.g. calculator) that you can use
 
 
 
== Friday (11/9/12) ==
 
'''Warmup:'''
 
* Order of Operations Redemption Quiz
 
** No calculators!
 
** When you are done, print your score and tell Mr. Bui
 
 
 
'''Agenda:'''
 
* VA Workplace Readiness Assessment Pre-test (1 hr)
 
** There are on-screen tools (e.g. calculator) that you can use
 
 
 
== Wednesday - Thursday (11/7/12 - 11/8/12) ==
 
'''Warmup:'''
 
* Execute the code below
 
* When prompted, use 100 for x and 200 for y
 
* What does each line do?  Analyze!
 
 
 
<syntaxhighlight lang="Python">
 
from turtle import *
 
 
 
setup(200, 400)
 
screensize(200, 400)
 
x = numinput("X prompt", "Please enter an x")
 
y = numinput("Y prompt", "Please enter a y")
 
goto(x,y)
 
exitonclick()
 
</syntaxhighlight>
 
 
 
'''Agenda:'''
 
* Return 1st Quarter Exams
 
* [https://docs.google.com/spreadsheet/viewform?formkey=dGJUZFdpelg4TV9IZ1BhbllZRUk0X0E6MQ 1st Quarter Exam Debrief]
 
* Complete [[Turtle - Looping Assignment]] (practice loops with turtle)
 
* [[Turtle - Graphing Calculator]]
 
 
 
== Friday - Monday (11/2/12 - 11/5/12) ==
 
'''Agenda:'''
 
* 1st Quarter Exam
 
 
 
== Archives ==
 
* [[IBCS1 - 1213 - October]]
 
* [[IBCS1 - 1213 - September]]
 

Latest revision as of 08:28, 13 September 2023