CSCI 150 Tips and Handouts

I will post general tips and handouts on this page. Please check often to make sure you do not miss any important information.

General Tips

Slides from Class

The course slides are posted on Blackboard under "Course Content" -> "Slides".

Code from Class

Jan 30: Feb 1: Feb 3: Feb 6:
  • skips.py (demonstrates how the skip parameter in range affects for loops)
  • printingFor.py (body of a for loop vs. code after a for loop)
  • concatenation.py (demonstrates String concatenation)
Feb 8:
  • calcE.py (uses nested for loops to estimate Euler's constant e)
  • distances.py (shows how we can find the square and square root of numbers)
Feb 10: Feb 13: Feb 15: Feb 20:
  • inputProgram.py (keeps asking user for inputs with a while loop as part of an ASCII art show)
Feb 22: Feb 24: Mar 1:
  • clickers.py (demonstrates reading data from file and splitting strings between commas)
  • responses.txt (the comma-separated data for clickers.py)
Mar 10: Mar 15: Mar 17:
  • testingFib.py (compares iterative and recursive solutions to generating the Fibonacci sequence)
  • hanoi.py (Towers of Hanoi problem)
Mar 29:
  • sorting.py (comparison of Selection, Insertion, Bubble, and Merge Sort)
Apr 3: Apr 7: Apr 12: Apr 14: