<?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=IBCS2_-_1415_-_September</id>
	<title>IBCS2 - 1415 - September - 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=IBCS2_-_1415_-_September"/>
	<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1415_-_September&amp;action=history"/>
	<updated>2026-08-10T21:08:59Z</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=IBCS2_-_1415_-_September&amp;diff=11658&amp;oldid=prev</id>
		<title>Admin: Protected &quot;IBCS2 - 1415 - September&quot; ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1415_-_September&amp;diff=11658&amp;oldid=prev"/>
		<updated>2014-10-08T07:34:32Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wl/IBCS2_-_1415_-_September&quot; title=&quot;IBCS2 - 1415 - September&quot;&gt;IBCS2 - 1415 - September&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 07:34, 8 October 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=IBCS2_-_1415_-_September&amp;diff=11657&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;== Monday - Tuesday (9/29/14 - 9/30/14) == &#039;&#039;&#039;Agenda:&#039;&#039;&#039; * Two-Dimensional Array Assignment *# Write a function: &#039;&#039;&#039;matrixAdd(m1, m2)&#039;&#039;&#039; that returns a new matrix that is the sum...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1415_-_September&amp;diff=11657&amp;oldid=prev"/>
		<updated>2014-10-08T07:34:25Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Monday - Tuesday (9/29/14 - 9/30/14) == &amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039; * Two-Dimensional Array Assignment *# Write a function: &amp;#039;&amp;#039;&amp;#039;matrixAdd(m1, m2)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the sum...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Monday - Tuesday (9/29/14 - 9/30/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Two-Dimensional Array Assignment&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;matrixAdd(m1, m2)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the sum of m1 and m2&lt;br /&gt;
*#* Be sure to check if the two matrices are the same size (if not, then return &amp;#039;&amp;#039;&amp;#039;null&amp;#039;&amp;#039;&amp;#039;)&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;fliplr(m)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the horizontal flip (left to right) of matrix &amp;#039;&amp;#039;&amp;#039;m&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*#* [http://www.mathworks.com/help/matlab/ref/fliplr.html MATLAB fliplr() description]&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;flipud(m)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the vertical flip (up to down) of matrix &amp;#039;&amp;#039;&amp;#039;m&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*#* [http://www.mathworks.com/help/matlab/ref/flipud.html MATLAB flipup() description]&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;matrixMult(m1, m2)&amp;#039;&amp;#039;&amp;#039; that returns the product of matrix m1 and m2&lt;br /&gt;
*#* Be sure to check the rules of matrix multiplication&lt;br /&gt;
*#* Return an &amp;#039;&amp;#039;&amp;#039;null&amp;#039;&amp;#039;&amp;#039; matrix if their sizes are different&lt;br /&gt;
* Challenge: Write the function &amp;#039;&amp;#039;&amp;#039;det(m)&amp;#039;&amp;#039;&amp;#039; which returns the determinant of any matrix m&lt;br /&gt;
&lt;br /&gt;
== Thursday - Friday (9/25/14 - 9/26/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Two-Dimensional Arrays and Nested Loops&lt;br /&gt;
*# Accessing all of the individual elements of a two-dimensional list&lt;br /&gt;
*# Prompt the user to construct a two-dimensional list&lt;br /&gt;
*## Prompt for the number of rows&lt;br /&gt;
*## Prompt for the number of columns&lt;br /&gt;
*## Prompt the user for each number in the two-dimensional list&lt;br /&gt;
*# Write the function &amp;#039;&amp;#039;&amp;#039;matrixPrint(m)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Two-Dimensional Array Assignment&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;matrixAdd(m1, m2)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the sum of m1 and m2&lt;br /&gt;
*#* Be sure to check if the two matrices are the same size (if not, then return &amp;#039;&amp;#039;&amp;#039;null&amp;#039;&amp;#039;&amp;#039;)&lt;br /&gt;
*# Write a function: &amp;#039;&amp;#039;&amp;#039;matrixMult(m1, m2)&amp;#039;&amp;#039;&amp;#039; that returns the product of matrix m1 and m2&lt;br /&gt;
*#* Be sure to check the rules of matrix multiplication&lt;br /&gt;
*#* Return an &amp;#039;&amp;#039;&amp;#039;null&amp;#039;&amp;#039;&amp;#039; matrix if their sizes are different&lt;br /&gt;
* 2-D array deep copying&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;Python&amp;quot;&amp;gt;&lt;br /&gt;
import copy&lt;br /&gt;
m2 = copy.deepcopy(m1)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
* Write a function: &amp;#039;&amp;#039;&amp;#039;fliplr(m)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the horizontal flip (left to right) of matrix &amp;#039;&amp;#039;&amp;#039;m&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** [http://www.mathworks.com/help/matlab/ref/fliplr.html MATLAB fliplr() description]&lt;br /&gt;
* Write a function: &amp;#039;&amp;#039;&amp;#039;flipud(m)&amp;#039;&amp;#039;&amp;#039; that returns a new matrix that is the vertical flip (up to down) of matrix &amp;#039;&amp;#039;&amp;#039;m&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** [http://www.mathworks.com/help/matlab/ref/flipud.html MATLAB flipup() description]&lt;br /&gt;
* Challenge: Write the function &amp;#039;&amp;#039;&amp;#039;det(m)&amp;#039;&amp;#039;&amp;#039; which returns the determinant of any matrix m&lt;br /&gt;
&lt;br /&gt;
== Tuesday - Wednesday (9/23/14 - 9/24/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Bubble Sort - [[Media:Sorting.pptx]]&lt;br /&gt;
* Make sure you have completed the CodingBat Array Review&lt;br /&gt;
** Complete 10 of your choice from [http://codingbat.com/java/Array-2 Array2]&lt;br /&gt;
* Demo [[JavaSelectionSortAssignment.java]]&lt;br /&gt;
* Complete [[JavaBubbleSortAssignment.java]]&lt;br /&gt;
* Introduction to Quicksort&lt;br /&gt;
&lt;br /&gt;
== Friday - Monday (9/19/14 - 9/22/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# Create a 2-3 person group&lt;br /&gt;
# Take some (~6) playing cards&lt;br /&gt;
# Lay them out randomly in a row (out of order)&lt;br /&gt;
# As a team, discuss an algorithm to sort them&lt;br /&gt;
# You are only allowed to swap cards (i.e. they cannot be removed or added to a new array)&lt;br /&gt;
# Sort them in numerical order (Ace is high)&lt;br /&gt;
# Write down the basic steps to your algorithm&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Introduction to Sorting Activity&lt;br /&gt;
* Selection Sort - [[Media:Sorting.pptx]]&lt;br /&gt;
* Complete [[JavaSelectionSortAssignment.java]] by next class&lt;br /&gt;
* CodingBat Array Review - due Monday (9/22/14)&lt;br /&gt;
*# If you do not already have one, create a [http://codingbat.com/ CodingBat] account&lt;br /&gt;
*# Once you&amp;#039;re logged in, go to &amp;#039;&amp;#039;&amp;#039;prefs-&amp;gt;teacher share&amp;#039;&amp;#039;&amp;#039; and use [[Image:BuiEmail.bmp]]&lt;br /&gt;
*# Complete 10 of your choice from [http://codingbat.com/java/Array-2 Array2] by Monday (9/22/14)&lt;br /&gt;
* Work on [[JavaBubbleSortAssignment.java]]&lt;br /&gt;
&lt;br /&gt;
== Wednesday - Thursday (9/17/14 - 9/18/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Review Binary Search in [[Media:Searching.pptx]]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Review Searching - [[Media:Searching.pptx]]&lt;br /&gt;
* Complete [[JavaSearchAssignment.java]]&lt;br /&gt;
** Linear Search&lt;br /&gt;
** Binary Search&lt;br /&gt;
&lt;br /&gt;
== Monday - Tuesday (9/15/14 - 9/16/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Demo [[Guessing Game Assignment]] in Java&lt;br /&gt;
* Review Java Arrays&lt;br /&gt;
* Searching - [[Media:Searching.pptx]]&lt;br /&gt;
** Linear Search&lt;br /&gt;
** Binary Search&lt;br /&gt;
* Complete [[JavaSearchAssignment.java]]&lt;br /&gt;
* CodingBat Array Review&lt;br /&gt;
*# If you do not already have one, create a [http://codingbat.com/ CodingBat] account&lt;br /&gt;
*# Once you&amp;#039;re logged in, go to &amp;#039;&amp;#039;&amp;#039;prefs-&amp;gt;teacher share&amp;#039;&amp;#039;&amp;#039; and use [[Image:BuiEmail.bmp]]&lt;br /&gt;
*# Complete 10 of your choice from [http://codingbat.com/java/Array-2 Array2] by Monday (9/22/14)&lt;br /&gt;
&lt;br /&gt;
== Thursday - Friday (9/10/14 - 9/12/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Quiz on [[Media:SystemDesignBasics.pptx]]&lt;br /&gt;
* Java Review&lt;br /&gt;
** Simple main method&lt;br /&gt;
** Weapon, Creature, CombatSimulation&lt;br /&gt;
** [http://introcs.cs.princeton.edu/java/11cheatsheet/ Java Programming Cheatsheet]&lt;br /&gt;
* Java Practice&lt;br /&gt;
** Java input with Scanner&lt;br /&gt;
** Circle circumference and area calculator&lt;br /&gt;
* Recreate the [[Guessing Game Assignment]] in Java&lt;br /&gt;
** You may need to look up how to do random numbers in Java&lt;br /&gt;
** You can always refer to the [http://introcs.cs.princeton.edu/java/11cheatsheet/ Java Programming Cheatsheet]&lt;br /&gt;
&lt;br /&gt;
== Friday - Wednesday (9/5/14 - 9/10/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Turn in signed syllabus sheet if you have it&lt;br /&gt;
* Submit Internal Assessment Criteria A &amp;amp; B via Google Classroom&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[Media:SystemDesignBasics.pptx]]&lt;br /&gt;
** Quiz on [[Media:SystemDesignBasics.pptx]] on Thursday, Friday (9/11/14, 9/12/14)&lt;br /&gt;
* Internal Assessment discussions&lt;br /&gt;
* Usability Assignment&lt;br /&gt;
*# Sign into your APS Google account&lt;br /&gt;
*# Open a Google Doc and title it &amp;#039;&amp;#039;&amp;#039;Usability Assignment&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*# Put your name at the top&lt;br /&gt;
*# Use [http://www.nngroup.com/articles/ten-usability-heuristics/ Nielsen&amp;#039;s 10 Usability Heuristics]&lt;br /&gt;
*# Find 2 examples of good usability&lt;br /&gt;
*## Take a screenshot or find a picture of the example&lt;br /&gt;
*## Paste it into the Google Doc&lt;br /&gt;
*## Point out or highlight the specific usability aspect somehow (in red or bright green are best)&lt;br /&gt;
*## State which usability rule the example is following, and describe how it follows it&lt;br /&gt;
*## Repeat for each of the 2 examples of good usability (each example should be a different usability rule)&lt;br /&gt;
*# Find 2 examples of bad usability&lt;br /&gt;
*## Take a screenshot or find a picture of the example&lt;br /&gt;
*## Paste it into the Google Doc&lt;br /&gt;
*## Point out or highlight the specific usability aspect failure (in red or bright green are best)&lt;br /&gt;
*## State which usability rule the example is breaking, and describe how it breaks it&lt;br /&gt;
*## Repeat for each of the 2 examples of bad usability (each example should be a different usability rule)&lt;br /&gt;
*# Submit the document through Google Classroom&lt;br /&gt;
&lt;br /&gt;
== Wednesday - Thursday (9/3/14 - 9/4/14) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[IB Computer Science II Syllabus]]&lt;br /&gt;
** Signed syllabus sheets due by the end of next week&lt;br /&gt;
* [http://classroom.google.com Google Classroom]&lt;br /&gt;
** Sign into your APS Google accounts&lt;br /&gt;
** Class code: gaxvqsv&lt;br /&gt;
* [[Internal Assessment]] Discussions&lt;br /&gt;
&lt;br /&gt;
== Tuesday (9/2/14) ==&lt;br /&gt;
* Re-introductions&lt;br /&gt;
* Name cards&lt;br /&gt;
* Guest login&lt;br /&gt;
** Username: guest&lt;br /&gt;
** No password (just hit enter)&lt;br /&gt;
* Complete the [https://docs.google.com/spreadsheet/viewform?key=0ApPgoX5sTp-_cDZfazFTTWJTMnp2TUhKTkpCQmtGUEE Student Survey]&lt;br /&gt;
* [[Internal Assessment]] Discussion&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>