Difference between revisions of "IB Computer Science II"

From WLCS
Line 1: Line 1:
 +
== Tuesday - Thursday (9/8/09 - 9/10/09) ==
 +
* Introductions
 +
* [[IB Computer Science II Syllabus]]
 +
* Name cards
 +
* Lab setup/config
 +
** Login username is your first initial and lastname (e.g. pbui)
 +
** Your password is your student ID number
 +
** Go to System -> Preferences -> About Me -> Change Password
 +
* [http://spreadsheets.google.com/viewform?key=p6_k1SMbS2zvMHJNJBBkFPA Student Survey]
 +
** Fill out and submit
 +
** Share several snippets with class
 +
* On-line Resources
 +
** [http://www.paulbui.net/wl/cs2 Old IBCS2 website]
 +
** [http://www.eimacs.com EIMACS] - test your login
 +
** [http://www.turingscraft.com Turingscraft] - login coming soon!
 +
* Java Review
 +
# Write a Hello, world! program ( Hint: [[Java program template]] )
 +
## Create a new Java program using JEdit or whatever editor you prefer
 +
## Use the Java program template as a guide
 +
## Insert your code
 +
## Compile and execute your code
 +
### Open terminal
 +
### Navigate to your Java file
 +
### ''javac FILENAME''
 +
### Execute your code: ''java PROGRAM_NAME''
 +
# Write a program that prints Hello, world 20 times
 +
# Write a program that prints Hello, world infinite times
 +
* Program dossier introduction
 +
** [http://www.ib-computing.com/java/dossier/choices.html IB Computing Dossier suggestions]
 +
 
== Summer Break ==
 
== Summer Break ==
 
* [[IBCS2 Summer Assignment]]
 
* [[IBCS2 Summer Assignment]]

Revision as of 23:14, 6 September 2009

Tuesday - Thursday (9/8/09 - 9/10/09)

  • Introductions
  • IB Computer Science II Syllabus
  • Name cards
  • Lab setup/config
    • Login username is your first initial and lastname (e.g. pbui)
    • Your password is your student ID number
    • Go to System -> Preferences -> About Me -> Change Password
  • Student Survey
    • Fill out and submit
    • Share several snippets with class
  • On-line Resources
  • Java Review
  1. Write a Hello, world! program ( Hint: Java program template )
    1. Create a new Java program using JEdit or whatever editor you prefer
    2. Use the Java program template as a guide
    3. Insert your code
    4. Compile and execute your code
      1. Open terminal
      2. Navigate to your Java file
      3. javac FILENAME
      4. Execute your code: java PROGRAM_NAME
  2. Write a program that prints Hello, world 20 times
  3. Write a program that prints Hello, world infinite times

Summer Break