<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.paulbui.net/wiki/index.php?action=history&amp;feed=atom&amp;title=CS1_-_1314_-_February</id>
	<title>CS1 - 1314 - February - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.paulbui.net/wiki/index.php?action=history&amp;feed=atom&amp;title=CS1_-_1314_-_February"/>
	<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=CS1_-_1314_-_February&amp;action=history"/>
	<updated>2026-04-17T08:41:36Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.31.8</generator>
	<entry>
		<id>https://www.paulbui.net/wiki/index.php?title=CS1_-_1314_-_February&amp;diff=11259&amp;oldid=prev</id>
		<title>Admin: Protected &quot;CS1 - 1314 - February&quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=CS1_-_1314_-_February&amp;diff=11259&amp;oldid=prev"/>
		<updated>2014-04-02T12:18:33Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wl/CS1_-_1314_-_February&quot; title=&quot;CS1 - 1314 - February&quot;&gt;CS1 - 1314 - February&lt;/a&gt;&amp;quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 12:18, 2 April 2014&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
	<entry>
		<id>https://www.paulbui.net/wiki/index.php?title=CS1_-_1314_-_February&amp;diff=11258&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;== Friday (2/28/14) == &#039;&#039;&#039;Warmup:&#039;&#039;&#039; * Without using a computer, identify the syntax errors in the following code  &lt;syntaxhighlight lang=&quot;Python&quot;&gt; a b = 1 b + 2 = c print(1, 2, 3...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=CS1_-_1314_-_February&amp;diff=11258&amp;oldid=prev"/>
		<updated>2014-04-02T12:18:14Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Friday (2/28/14) == &amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039; * Without using a computer, identify the syntax errors in the following code  &amp;lt;syntaxhighlight lang=&amp;quot;Python&amp;quot;&amp;gt; a b = 1 b + 2 = c print(1, 2, 3...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Friday (2/28/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Without using a computer, identify the syntax errors in the following code&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;Python&amp;quot;&amp;gt;&lt;br /&gt;
a b = 1&lt;br /&gt;
b + 2 = c&lt;br /&gt;
print(1, 2, 3, a, b, c)&lt;br /&gt;
x = input(please enter an x)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Introduction to Conditionals&lt;br /&gt;
** Comparison operators (&amp;lt;, &amp;gt;, &amp;lt;=, &amp;gt;=, ==, !=)&lt;br /&gt;
** Boolean values: True, False&lt;br /&gt;
** [[Comparison operators assignment]]&lt;br /&gt;
** if statement&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;Python&amp;quot;&amp;gt;&lt;br /&gt;
age = int(input(&amp;quot;What is your age?&amp;quot;))&lt;br /&gt;
&lt;br /&gt;
if age &amp;lt; 18:&lt;br /&gt;
    print(&amp;quot;You cannot vote&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
* if-else statement&lt;br /&gt;
* [[Media:BooleanLogic.ppt]]&lt;br /&gt;
* [[Logical operators assignment]]&lt;br /&gt;
* [[Python Boolean Exercises]]&lt;br /&gt;
&lt;br /&gt;
== Wednesday (2/26/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# Write a program named circleArea.py&lt;br /&gt;
# Create a variable named PI = 3.1415&lt;br /&gt;
# Prompt the user for the radius (ask for input) and store it in a variable &amp;#039;&amp;#039;&amp;#039;r&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# Output the area of the circle&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Input/Output Review&lt;br /&gt;
* Complete the [[Quadratic Formula Assignment]]&lt;br /&gt;
&lt;br /&gt;
== Monday (2/24/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# Sign into [http://www.codecademy.com/tracks/python Codecademy - Python]&lt;br /&gt;
# Show Mr. Bui that you have completed [http://www.codecademy.com/courses/introduction-to-python-6WeG3/0/1?curriculum_id=4f89dab3d788890003000096 Codecademy - Python Syntax]&lt;br /&gt;
# Show Mr. Bui that you have completed [http://www.codecademy.com/courses/python-beginner-GB6hM/0/1?curriculum_id=4f89dab3d788890003000096 Codecademy - Tip Calculator]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[Media:PythonInputOutput.ppt]]&lt;br /&gt;
* Complete the [[Quadratic Formula Assignment]]&lt;br /&gt;
&lt;br /&gt;
== Thursday (2/20/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Introduction to Values, Types, and Variables&lt;br /&gt;
** [[Media:ValuesTypesVariables.ppt]]&lt;br /&gt;
** Complete [[Values, Types, and Variables Identification assignment]] in your APS Google Drive&lt;br /&gt;
* Math operations in Python&lt;br /&gt;
** [[Media:PythonMathOperations.pptx]]&lt;br /&gt;
* Rectangle area program (&amp;#039;&amp;#039;&amp;#039;rectArea.py&amp;#039;&amp;#039;&amp;#039;)&lt;br /&gt;
*# Create 2 variables named &amp;#039;&amp;#039;&amp;#039;length, width&amp;#039;&amp;#039;&amp;#039; and give them some values&lt;br /&gt;
*# Calculate the area and store it in a variable named &amp;#039;&amp;#039;&amp;#039;area&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*# Print out the area&lt;br /&gt;
* Slope calculator program (&amp;#039;&amp;#039;&amp;#039;slope.py&amp;#039;&amp;#039;&amp;#039;)&lt;br /&gt;
*# Create 4 variables named &amp;#039;&amp;#039;&amp;#039;x1, y1, x2, y2&amp;#039;&amp;#039;&amp;#039; and give them some values&lt;br /&gt;
*# Calculate the slope using those variables and store it in a variable named &amp;#039;&amp;#039;&amp;#039;m&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*#* HINT: If you can&amp;#039;t remember the formula for something, look it up&lt;br /&gt;
*# Print out the slope&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homework:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Python Review on Codecademy&lt;br /&gt;
*# Sign into [http://www.codecademy.com/tracks/python Codecademy - Python]&lt;br /&gt;
*# Complete [http://www.codecademy.com/courses/introduction-to-python-6WeG3/0/1?curriculum_id=4f89dab3d788890003000096 Codecademy - Python Syntax]&lt;br /&gt;
*# Complete [http://www.codecademy.com/courses/python-beginner-GB6hM/0/1?curriculum_id=4f89dab3d788890003000096 Codecademy - Tip Calculator]&lt;br /&gt;
&lt;br /&gt;
== Tuesday (2/18/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Make sure that you shared your [[Computer hardware assignment]] Google document w/ Mr. Bui&lt;br /&gt;
* Create an account on [http://www.codecademy.com/ Codecademy]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[Media:BasicProgrammingTerms.ppt]]&lt;br /&gt;
*# Answer the questions at the end of the PowerPoint&lt;br /&gt;
* Introduction to Python&lt;br /&gt;
** WingIDE 101&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Hello_world_program Hello world program]&lt;br /&gt;
* Introduction to Values, Types, and Variables&lt;br /&gt;
** [[Media:ValuesTypesVariables.ppt]]&lt;br /&gt;
** Complete [[Values, Types, and Variables Identification assignment]] in your APS Google Drive&lt;br /&gt;
&lt;br /&gt;
== Tuesday (2/11/14/) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete [[Computer hardware assignment]]&lt;br /&gt;
** Be sure to share your Google document w/ Mr. Bui&lt;br /&gt;
* Quiz on [[Media:Hardware.pptx]]!&lt;br /&gt;
** You should be able to identify the name of the part just by looking at it&lt;br /&gt;
** You should be able to describe what the part does&lt;br /&gt;
** You should be able to use the binary prefixes: bit and byte&lt;br /&gt;
&lt;br /&gt;
== Friday (2/7/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Create an account at [http://pcpartpicker.com PCPartPicker]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[Computer hardware assignment]]&lt;br /&gt;
* How do you take a screenshot?&lt;br /&gt;
*# Press Command-Shift-4&lt;br /&gt;
*# Select the area on the screen&lt;br /&gt;
*# The image will appear on your desktop&lt;br /&gt;
* How do you choose a computer case?&lt;br /&gt;
*# Check the size of your motherboard (e.g. ATX, mini-ATX, micro-ATX, etc.) and match it with the case&lt;br /&gt;
*# Make sure your case looks cool&lt;br /&gt;
* Complete the [[Computer hardware assignment]] today&lt;br /&gt;
** Make sure you share the document with Mr. Bui&lt;br /&gt;
* Quiz on the different computer components on Tuesday (2/11/14)&lt;br /&gt;
** You should be able to identify the name of the part just by looking at it&lt;br /&gt;
** You should be able to explain what that part basically does&lt;br /&gt;
&lt;br /&gt;
== Wednesday (2/5/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Introduction to Computer Hardware&lt;br /&gt;
** [[Media:Hardware.pptx]]&lt;br /&gt;
&lt;br /&gt;
== Monday (2/3/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Demo [[Asteroids]]&lt;br /&gt;
* If you have completed [[Asteroids]], then try to implement several advanced features&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>