Student activity

Results for Student activity

Selection Sort Algorithm

Here are a few videos that I created last school year while teaching selection sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The video shows us working through the algorithm using tiles. There is also two workshe ...

Resource - CrystalFurman - 10 Jan 2014 - 23:09 - 0 comments

Selection Sort Algorithm

selectionsortwithtiles.docx Worksheet to use with the tiles Unsorted Pointer find min (max) pointer int minPos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 23:09

Selection Sort Algorithm

void selectionSort() { int smallestIndex = 0; // loop from 0 to one before last item for (int i = 0; i < a.length-1; i++) { // set smallest index to the one at i ... the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 i=1 i=2 ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 23:08

Insertion Sorting Resources

Here are a few videos that I created last school year while teaching insertion sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The first video shows a trace through the selection sort algorithm. The worksheet we ar ...

Resource - CrystalFurman - 10 Jan 2014 - 23:02 - 0 comments

Insertion Sorting Resources

insertionsortwithtiles.docx worksheet for using tiles Sorted Pointer pos -1 int pos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 23:01

Insertion Sorting Resources

int temp = 0; int pos = 0; // loop from second element on for (int i = 1; i ... pos = i; // shift right any larger elements while (0 < pos && temp ... are the values in the array after each time the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 ...application/msword icon application/msword attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 22:59

Web Unit some great web based editors

Here are two great online editors that your students can use to bulid web sites. Students only need to write down the url to view and work on their page. http://jsbin.com https://thimble.webmaker.org With these two site a pixlr stude ...

Resource - wstarzyk - 7 Dec 2013 - 16:48 - 0 comments

Misc: Data Lab

Lab Instructions Highlights: Learn how a computer can supplement your own thinking for drawing conclusions from data Experience how patterns can emerge from computational processing of data ...

Resource book - sean.smorris - 26 Nov 2013 - 18:01 - 0 comments

Reflection/Exit Ticket 3 Sentence Essays

Reflection/Exit Ticket in 3 Sentences Three-sentence essays allow students to synthesize their learning and teachers to efficiently monitor student progress. In their three-sentence essays, students are asked to do the following: Claim it— ...

Resource - clyman - 22 Nov 2013 - 12:04 - 0 comments

Projects for Alice 2 and 3 - with videos

See the Institute for Computing Education (ICE) distance learning website for projects for Alice 2 and 3.  Also click here  to see winners of our Alice competition.  Middle and high school students can enter games or movies as individuals or in gr ...

Resource - ericsonga - 20 Nov 2013 - 21:14 - 0 comments - 2 groups

Syndicate content