27 September 2015

Week 8


Lab 5 final version

Bitbucket quick intro (v.2)
for A1 submission
- commit your current version today
- update regularly (daily?)


Attendance (w8-2)

Slides (w8-2)

20 September 2015

Week 7

Attendance (w7-1)

Slides (w7-1)

Lab 5 draft


Slides (w7-2)

No attendance..

13 September 2015

Assignment 1 (A1)

draft version 0.1

A1 version 1.0

Week 6

Attendance (w6-1)

Slides (w6-1)

Lab 4x Hello Python
- try using online python editor and write programs for generic exercises
- visualize code execution


Attendance (w6-2)

Slides (w6-2)

8 September 2015

Monthly Loan Payment


From this example, monthly payment is $444.24 (not $500)

To calculate use this formula



6 September 2015

Pseudocode example

The following pseudocode determines whether a year is a leap year

if (year is not exactly divisible by 4) then (it is a common year)
else if (year is not exactly divisible by 100) then (it is a leap year)
else if (year is not exactly divisible by 400) then (it is a common year)
else (it is a leap year)

https://en.wikipedia.org/wiki/Leap_year

Week 5

Attendance (w5-1)

Slides (w5-1)

Lab 4


Attendance (w5-2)