html5-img
1 / 7

CPSC 233

CPSC 233. Instructor: Nathaly (pronounced as Natalie) Verwaal Office: ICT 710 Course Website: http://cpsc.ucalgary.ca/~verwaal/233 E-mail: verwaal@cpsc.ucalgary.ca Office Hours: W 11:30 – 12:30 H 12:30 – 13:30 by appointment. Learning. Directly Applicable Skills versus

Download Presentation

CPSC 233

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CPSC 233 Instructor: Nathaly (pronounced as Natalie) Verwaal Office: ICT 710 Course Website: http://cpsc.ucalgary.ca/~verwaal/233 E-mail: verwaal@cpsc.ucalgary.ca Office Hours: W 11:30 – 12:30 H 12:30 – 13:30 by appointment

  2. Learning Directly Applicable Skills versus Computer Science Foundation

  3. Prerequisite Skills • Everything from CPSC 231 • This includes: • Statements • Boolean and arithmetic expressions • Variables • Scope • Data types • Functions • Parameters and arguments • Return values • Modules, classes and objects

  4. Learning Goals Be prepared for exams Use material in future coursesApply to activities outside of university

  5. Assignments • Object Oriented Programming – suitable for medium to large scale projects • Assignments – micro scale

  6. Development Environment • Using editor and command line • Gives insight into development cycle • Understand how Java application are constructed • Required to know how to do this • Using Integrated Development Environment (IDE) • Easier to manage multiple files • More efficient development • Many tasks performed for you

  7. First Java Program import java.util.Random; public class FirstClass { public static void main(String[] args) { Random generator = new Random(); int num = generator.nextInt(10); System.out.println(“Random number: “ + num); } }

More Related