Difference between revisions of "Computer Science"

From WLCS
 
(665 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Wednesday - Thursday (2/8/12 - 2/9/12) ==
 
* Introduction to Functions
 
** Function definition
 
** Function header
 
** Function body
 
** Function call
 
* Complete the [[Turtle - House Function Assignment]]
 
* Function parameters
 
** Defining and calling a function with one parameter
 
** Defining and calling a function with more than one parameter
 
* Redo the House Function
 
*# After demonstrating the House Function the first time, change the function by adding 2 parameters
 
*# Add x and y parameters to the function header's parameter list
 
*# Add goto(x,y) at the beginning of the function body so that the house is drawn at (x,y)
 
*# Don't forget to use penup() and pendown()
 
*# Test your new function by making a function call using parameters:
 
 
<source lang="Python">
 
house(0,200)
 
house(-200,200)
 
house(0,-200)
 
</source>
 
 
* Introduction to Values, Types, and Variables
 
* Complete [[Values, Types, and Variables Identification assignment]]
 
 
== Monday - Tuesday (2/6/12 - 2/7/12) ==
 
'''Agenda:'''
 
* More Python Turtle Commands
 
** exitonclick() reminder
 
** home()
 
** goto()
 
** circle()
 
** dot()
 
* More Turtle practice.  Demo the following:
 
*# Draw a bullseye target in the middle of the screen
 
*# Draw dots in a row
 
*# Draw a circle in each of the four corners
 
*# Draw dots in a row of increasing size that are touching each other
 
 
== Wednesday - Friday (2/1/12 - 2/3/12) ==
 
* How to submit to [http://stemchallenge.org/ STEM Challenge]
 
* [[Media:BasicProgrammingTerms.ppt]]
 
* Course Request Forms (CRFs)
 
** IB Computer Science: Part 1 (36570)
 
** IB Information Technology in the Global Society (36613)
 
* Introduction to Python Turtle
 
** [http://docs.python.org/py3k/library/turtle.html Python turtle library]
 
** Complete [[Turtle - Moving and Drawing Assignment]]
 
* More Python Turtle Commands
 
** exitonclick() reminder
 
** home()
 
** goto()
 
** circle()
 
** dot()
 
* Practice
 
*# Draw a bullseye target in the middle of the screen
 
*# Draw dots in a row
 
*# Draw a circle in each of the four corners
 
*# Draw dots in a row of increasing size that are touching each other
 
 
 
== Archives ==
 
== Archives ==
* [[CS1 - 1112 - January]]
+
* CS1 - 1819 (Poland) - APS Canvas
* [[CS1 - 1112 - December]]
+
* CS1 - 1718 (Poland) - APS Canvas
* [[CS1 - 1112 - November]]
+
* CS1 - 1617 (Poland) - Google Classroom
* [[CS1 - 1112 - October]]
+
** [https://docs.google.com/a/apsva.us/document/d/1VnXYBgVIABKBGVYNuoQQ6E_6kUzcNah2TFlM5QgTOW0/edit?usp=sharing 2017 Syllabus]
* [[CS1 - 1112 - September]]
+
* [https://sites.google.com/a/apsva.us/ocopcompsci/ CS1 - 1516 (MacLeod)]
 +
* [[CS1 - 1415]]
 +
* [[CS1 - 1314]]
 +
* [[CS1 - 1213]]
 +
* [[CS1 - 1112]]
 +
* [[CS1 - 1011]]
 +
* [[CS1 - 0910]]
 +
* [[CS1 - 0809]]
 +
* [http://www.paulbui.net/wl0708/cs1 CS1 - 0708]
 +
* [http://www.paulbui.net/wl0607/cs1/schedule.html CS1 - 0607]

Latest revision as of 11:04, 13 November 2018

Archives