Programming for Computing 07 - 08

Chapter: Additions and Errata

Module Admin   Contents, Index   Schedule  
1: Intro to VB    2: First Program and Projects    3: Variables, assignment, Strings    4: Type Conversion, InputBox, Constants    5:Built-in Functions    6: If - decisions    7: Loops - while, for    Example - find smallest    8: Scopes: local, global    9: Writing Procedures.Parameters, Functions   
10: Objects    11: Design    12: Testing    13: Graphics    14: Controls and events    15: Listboxes    16: Arrays    17: Files    18: The Command Line   

Appendices(links etc)   Additional Lectures    Tutorials (not in printed notes)     Selected solutions (not in printed notes)     Assignments    Additions and Errata   

new

The  schedule page has info on what we will do each week.

There may be a handful of bugs in the printed notes. I will fix them in the on-line version, and indicate the fix by this icon:

fixed Additions are shown by:

new

Errata

p13, section 3.23: integer division only works on integer numbers or variables. It truncates (downwards), as in:

dim a as integer = 11
dim x as integer
x = a \ 6          ' x is 1
x = a \ 11         ' x is 1
x = a \ 4          ' x is 2

Additions

none yet...

Module Admin   Contents, Index