Welcome to CMPT 125/126! Introduction to Computer Science and Programming II

Size: px
Start display at page:

Download "Welcome to CMPT 125/126! Introduction to Computer Science and Programming II"

Transcription

1 Welcome to CMPT 125/126! Introduction to Computer Science and Programming II Instructor : Scott Kristjanson TAs : Yu Yang, Megan O Connor SFU Burnaby, Fall 2013

2 2 CMPT 125/126 Overview Introduction to Computing Science and Programming II An introduction to computing science and computer programming in the Java Programming Language Suitable for students who already have some background in computing science and programming Intended for students who will major in computing science or a related program A Single Course with Two Course numbers: CMPT 125 Students who have completed CMPT 120 CMPT 126 Students with experience in programming Combined in CourSys as CMPT_125_X1 Wk01.1 Slide 2

3 3 Course Topics General introduction Java Basics Review of Elementary programming: basic data types and conversions control: if-then-else, for, while subroutines, modularity, packages Elementary data structures arrays, linked lists, stacks, queues Object-oriented concepts: objects, classes, encapsulation Inheritance, overloading, and polymorphism Iterators, Abstract Data Types Recursion Fundamental algorithms Sorting and Searching Design and Implementation of medium and large scale applications Analysis of Algorithms: Computability and complexity Exception handling File I/O and Dynamic data structures as time permits Wk01.1 Slide 3

4 4 Required Text: Java Foundations: Introduction to Program Design & Data Structures, 3 rd Edition [1] by J. Lewis, P. DePasquale, and J. Chase Available from the SFU Bookstore in hardcopy or as an on-line edition Library will have several copies available in the Reserve section of the library You might be able to get by with the second edition. I will provide corresponding section numbers on a best-effort basis. Wk01.1 Slide 4

5 5 Course Web Resources Course Description available via Course Central: Course Webpage: Course Outline and Schedules Assignments and Due Dates Link to course online discussion forum (Canvas system) Marking Schemes and Solutions Communications: questions to your TAs or instructor directly, or send to The TAs and instructor will use to send announcements and tips during the semester. You should read your SFU account regularly, at least a few times each week. Wk01.1 Slide 5

6 6 Tutorials Tutorials contain a mix of demos, exercises, and one-on-one help from TA CSIL PCs can multi-boot either Windows or Linux Encouraged to work in pairs on Lab Exercises It is each student s responsibility during your scheduled section to: Attend and sit at a PC near the North Projection Screen Read Lab Exercises ahead of time and be prepared Watch Lab Demos and ask questions Complete any work specified in the Lab Exercises by the Due Date Submit completed exercises on-line if specified to do so in the Lab Exercises Ensure to check in with TA for attendance before you leave Logout at the end of Tutorial to make room for students in next Section You can continue your work on another PC in the same general area of CSIL CMPT 125 Tutorials Applied Sciences Building 9838 (CSIL) Section D101 09:30am 10:20AM Section D102 10:30am 11:20AM Section D103 11:30am 12:20PM Section D104 12:30pm 01:20PM CMPT 126 Tutorials Applied Sciences Building 9838 (CSIL) Section D101 1:20pm 2:20pm Section D102 3:30pm 4:20pm Section D103 4:30pm 5:20pm Wk01.1 Slide 6

7 7 Course Marking Scheme 10% - Labs (5% Participation, 5% Lab Exercises) 2% - Academic Enhancement Program (AEP) 3% - Quizzes 15% - Assignments 20% - Midterm 50% - Final Exam Note: Students must attain an overall passing grade on the weighted average of exams in the course in order to obtain a clear pass (C- or better). Students who do not obtain a passing grade in the final exam may not obtain a pass (D or better). Wk01.1 Slide 7

8 8 Academic Dishonesty [4][5][6] We take academic dishonesty very seriously in the School of Computing Science. Academic dishonesty includes (but is not limited to) the following: copying another student s assignment allowing others to complete work for you allowing others to use your work copying part of an assignment from an outside source cheating in any way on a test or examination If you are unclear on what academic dishonesty is, please read Policy It can be found in the Policies & Procedures section in the SFU web site. Cheating on a lab or assignment will result in a mark of 0 on the piece of work. At the instructor s option, further penalties may be requested. Any academic dishonesty will also be recorded in your file, as is required by University policy. Any academic dishonesty on the midterm or final will result in a recommendation that an F be given for the course. Wk01.1 Slide 8

9 9 By the end of this course You should be able to: Describe some of the basic ideas of computer science Explain what Algorithms and computer programming are Identify Software Engineering principles of good design Design Data Structures appropriate to solve problems Design Algorithms to solve moderately complex problems Use Object Oriented concepts in your design Write Programs in the Java Programming Language Run and Test Java Programs in an IDE such as Eclipse Create Programs that are easy to understand and maintain Analyze how much memory and time an algorithm will take Keep these goals in mind as you progress through the course Wk01.1 Slide 9

10 10 Now let s get started with CMPT 125/126 Wk01.1 Slide 10

11 11 Introduction Chapter 1 Introduction Sections 1.2 to 1.5 Wk01.1 Slide 11

12 12 We are going to embark on a Journey Through the world of: Data Structures Algorithms Computer Programs using a high level language called Java In order to Solve Problems That s the purpose of writing computer programs! Java is just a tool, these concepts apply to many languages. Wk01.1 Slide 12

13 13 How does CMPT125/126 fit into Computing Science? [7] Computing science is the study of algorithms Formal and mathematical properties Hardware realizations Linguistic realizations Application of algorithms to solve problems and their: Cmpt 125 focussed on the Application of algorithms Other courses exist which focus on the other aspects: Formal and mathematical properties (CMPT 225/307/450) Hardware Architectures (CMPT150/250) Programming languages (CMPT383) We can sum up the goal of this course with the question: How can I implement an algorithm for my application on a PC in Java? Wk01.1 Slide 13

14 14 What is an Algorithm? The concept of an algorithm is fundamental to all of computing science and programming. An algorithm is a sequence of unambiguous instructions for solving a problem, i.e., for obtaining a required output for any legitimate input in a finite amount of time. Notice some important key words in the definition: Unambiguous: All steps should be clear and explicit Problem: An algorithm should solve to a particular problem Legitimate input: An algorithm typically needs input to do its job Finite amount of time: If we start the algorithm, it had better finish eventually Stated simply: An algorithm is a set of instructions that can be used to solve a problem. [4] Wk01.1 Slide 14

15 15 What kind of problems can Algorithms solve? The kind of applications you use everyday: Smart Phones Websites Games But also the kind of research happening at SFU right now: Mapping diseases to the human genome using the Cloud and Big Data Mapping patient brain function for improving brain surgery results Early detection of Skin Cancers using Smart Phones Energy saving techniques for Smartphone's Real-time encoding of Video for smart-phones with Cloud Computing Improved Multimedia Encoding Algorithms Faster Graphics and Computer Vision and Artificial Intelligence Bioinformatics, Robotics, Bio-molecular Computing Improved Computer Architecture Designs Telecoms, Networks and Graph Theory, Network Usage Algorithms Wk01.1 Slide 15

16 16 Are there any problems Algorithms Cannot Solve? Yes! Some problems just take too long, they are intractable: Finding optimal packing of N items in a backpack to maximize value Finding the most energy efficient folding of a protein of length N (for large N, these problems can take billions of years to solve!) Some problems are easily computed but undecidable: Does the decimal expansion of PI have a sequence of 7 s of length N? (One solution prints Yes, another prints No, but which is correct?) Some problems are not computable with ANY algorithm: Given an program to analyze, determine if the program ever halts (One can prove that no such algorithm is possible!) Wk01.1 Slide 16

17 17 Problem Solving Solving a problem consists of multiple activities: Understanding the problem Designing a solution, representing the information Considering alternatives and refining the solution Implementing the solution Testing the solution.. And do it all over again! These activities are not purely linear, they overlap and interact Wk01.1 Slide 17

18 18 Building on Your Existing Knowlege From Cmpt 120, it s assumed that you will be familiar with the basic concepts of programming. (Section numbers refer to the course text.) Data types and conversions ( , 2.5) Expressions ( 2.4) Strings ( 3.2) Libraries ( 3.3). These are called modules in Python, packages in Java. Conditionals (if-then-else) ( 4.1, 4.2) Definite (for) and indefinite (while) loops ( 4.5, 4.7, 4.8) Subroutines ( 5.4). Subroutines are usually associated with objects in Java and are called methods. It is also possible to define stand-alone subroutines. Basic terminal input/output ( 2.6) There is no expectation that you will know the precise Java syntax for these concepts, only that you know the concepts. Over the first few weeks of the course we will learn how they are expressed in Java. Wk01.1 Slide 18

19 19 New Tools to Learn In this course, you will also be learning some new tools: For most of you, a new operating system: Linux Command line tools ( javac, java, javadoc) that come with the Java Software Development Kit (SDK). Various Interactive Development Environments (IDE s) such as Eclipse Why Linux, Eclipse, and the Command Line? Combination considered to be a professional set of tools very efficient Eclipse IDE has more than you need for this course, you are building a foundation for future courses and the job market Command Line often used in industry to build and test automatically Can I use other environments like Windows and NetBeans? Yes but TAs will be using Linux and Command Line to test your Assignments If TA cannot compile and run your assignment in Linux, you get ZERO. You may develop on Windows using Eclipse, NetBeans, or JCreator But TEST it on Linux before submitting! Wk01.1 Slide 19

20 20 A little more on Hardware Realization Stripped of complexity, a simple computer looks like this: 1. Programs are loaded from disk and into Main Memory 2. The CPU interprets the 1 s and 0 s in memory as instructions 3. CPU interacts with i/o devices to perform some task These instructions of 1 s and 0 s are called Machine Language. Definitely NOT Java! Wk01.1 Slide 20

21 21 A More Complicated Computer Cell Broadband Engine by Sony, Toshiba, and IBM: a set of IBM PowerPC 64-bit Processor Units (PPUs) a set of Graphical Processing Units (SPUs) Do you recognize it? It s the processor inside of the Sony PlayStation 3 and Xbox 360 [8] Wk01.1 Slide 21

22 22 Program Development The mechanics of developing a program include several activities writing the program in a specific programming language (such as Java) translating the program into a form that the computer can execute investigating and fixing various types of errors that can occur Software tools can be used to help with all parts of this process Wk01.1 Slide 22

23 23 Language Levels There are four programming language levels machine language assembly language high-level language fourth-generation language Each type of CPU has its own specific machine language The other levels were created to make it easier for a human being to read and write programs Wk01.1 Slide 23

24 24 Language Levels A high-level expression and its lover level equivalents: Wk01.1 Slide 24

25 25 Compilation Each type of CPU executes only a particular machine language A program must be translated into machine language before it can be executed A compiler is a software tool which translates source code into a specific target language Often, that target language is the machine language for a particular CPU type The Java approach is somewhat different Wk01.1 Slide 25

26 26 Basic Programming Steps A program is written in an editor, compiled into an executable form, and then executed If errors occur during compilation, an executable version is not created Wk01.1 Slide 26

27 27 Java Translation The Java compiler translates Java source code into a special representation called bytecode Java bytecode is not the machine language for any traditional CPU Another software tool, called an interpreter, translates bytecode into machine language and executes it Therefore the Java compiler is not tied to any particular machine Java is considered to be architecture-neutral Just-in-Time compiler translates Bytecode into Machine code Wk01.1 Slide 27

28 28 Why Java instead of Python? Python: Considered a scripting language in industry, seldom used in products Does not scale up well for large complex programs Interpreted language is not efficient use of resources Simple structure easy to learn, but allows errors to go undetected Program Structure defined by indenting levels only Local variables declared implicitly, this allows typos to go undetected Java has several advantages: Most popular language in industry [3] - Write-Once-Run-Everywhere Modular structure and package concepts scale well to large programs Just-in-Time Compilation makes more efficient use of resources More complex structure helps catch errors at compile time Classes and Methods defined by enclosing braces {} All variables must be declared so typos cause compile errors Stronger type checking Wk01.1 Slide 28

29 29 Development Environments A development environment is the set of tools used to create, test, and modify a program An integrated development environment (IDE) combine the tools into one software program All development environments contain key tools, such as a compiler and interpreter Others include additional tools, such as a debugger, which helps you find errors Wk01.1 Slide 29

30 30 Integrated Development Environments There are many environments that support the development of Java software, including: Eclipse NetBeans JCreator Though the details of these environments differ, the basic compilation and execution process is essentially the same Eclipse, in particular, will seem complex and intimidating. Don t panic! You ve used similar tools before, you just have to recognize the resemblance. Very similar to a DVD Burner program: Invoke the program and it pops up a GUI with several window panes A pane exists to move files and assemble your project Another pane contains controls for building your project All three IDEs come pre-installed in CSIL but only Eclipse works on Linux Wk01.1 Slide 30

31 31 Eclipse Example IDE Screenshot Wk01.1 Slide 31

32 32 Syntax and Semantics The syntax rules of a language define how we can put together symbols, reserved words, and identifiers to make a valid program The semantics of a program statement define what that statement means (its purpose or role in a program) A program that is syntactically correct is not necessarily logically (semantically) correct A program will always do what we tell it to do, not what we meant to tell it to do Wk01.1 Slide 32

33 33 Errors A program can have three types of errors: The compiler will find syntax errors and other basic problems (compiletime errors) A problem can occur during program execution, such as trying to divide by zero, which causes a program to terminate abnormally (run-time errors) A program may run, but produce incorrect results, perhaps using an incorrect formula (logical errors) or having a race condition (Heizenbugs) Wk01.1 Slide 33

34 Problem Solving 34 The purpose of writing a program is to solve a problem Solving a problem consists of multiple activities understand the problem design a solution consider alternatives and refine the solution implement the solution test the solution These activities are not purely linear they should overlap and interact Wk01.1 Slide 34

35 35 Problem Solving The key to designing a solution is breaking it down into manageable pieces When writing software, we design separate pieces that are responsible for certain parts of the solution An object-oriented approach lends itself to this kind of solution decomposition We will dissect our solutions into pieces called objects and classes Wk01.1 Slide 35

36 36 Development Activities Software development consists of four basic development activities: establishing the requirements creating a design implementing the design Testing These steps also are never purely linear and often overlap and interact Wk01.1 Slide 36

37 37 Development Activities Establish the Requirements: Software requirements specify what a program must accomplish A Functional Specification document captures what the requirements are Create a design: A Software Design document indicates how a program will implement these requirements Implement the Design: Implementation is the process of writing the source code that will solve the problem Testing Testing is the act of validating that a program will solve the intended problem given all of the constraints under which it must perform Wk01.1 Slide 37

38 38 Object-Oriented Programming Java is an object-oriented programming language As the term implies, an object is a fundamental entity in a Java program Objects can be used effectively to represent real-world entities For instance, an object might represent a particular employee in a company Each employee object handles the processing and data management related to that employee Wk01.1 Slide 38

39 39 Objects An object has state - descriptive characteristics behaviors - what it can do (or what can be done to it) The state of a bank account includes its account number and its current balance The behaviors associated with a bank account include the ability to make deposits and withdrawals Note that the behavior of an object often changes its state Wk01.1 Slide 39

40 40 Classes An object is defined by a class A class is the blueprint of an object The class uses methods to define the behaviors of the object The class that contains the main method of a Java program represents the entire program A class represents a concept, and an object represents an instantiation of that concept Multiple objects can be created from the same class Wk01.1 Slide 40

41 41 Classes and Objects A class is like a blueprint from which you can create many of the "same" house with different characteristics Wk01.1 Slide 41

42 42 Classes and Objects An object is encapsulated, protecting the data it manages One class can be used to derive another via inheritance Classes can be organized into hierarchies Wk01.1 Slide 42

43 43 Classes and Objects Wk01.1 Slide 43

44 Summary 44 Key Things to take away from this presentation: Computer systems consist of hardware and software that work in concert to help us solve problems All programs must be translated into a CPU s Machine Code before it can be executed High-level Languages like Java allow a programmer to ignore CPU specific details of Machine Code and write portable code Many different development environments exist to help you create, test, and modify Java programs Syntax rules dictate the form of a program. Semantics dictate meaning of statements. A Java program must be syntactically correct or the compiler will not produce ByteCode Problem Solving involves breaking a problem into smaller pieces Each Object has a state defined by attributes, and behaviours defined by methods. A Class is a blueprint for creating object instances. Multiple objects can be created from one class definition. Wk01.1 Slide 44

45 45 References: 1. J. Lewis, P. DePasquale, and J. Chase., Java Foundations: Introduction to Program Design & Data Structures. Addison-Wesley, Boston, Massachusetts, 3rd edition, 2014, ISBN Brooks, Frederick P., No Silver Bullet: Essence and Accidents of Software Engineering, IEEE Computer, Vol. 20, No. 4 (April 1987) pp , 3. Top 10 Most Popular Programming Languages website, 4. G. Baker, The Computing Science 120 Study Guide: Introduction to Computing Science and Programming I, Fall 2010 Edition, 5. L. Hafer, Computing Science 125/126 Course Notes, Summer D. Cukierman, Computing Science 125/126 Course Notes, Spring G. Michael Schneider and Judith L. Gersting, An Invitation to Computer Science 8. C. R. Johns, D. A. Brokenshire, Introduction to the Cell Broadband Engine Architecture, IBM J. Res. & Dev. Vol. 51 No. 5 September 2007, pp Wk01.1 Slide 45

46 46 Thanks to past Cmpt125/126 Instructors For permission to use and adapt their course material Diana Cukierman Cmpt 125/126 Spring 2012 Lou Hafer Cmpt 126/126 Summer 2013 Greg Baker Cmpt 120 Fall 2010 Wk01.1 Slide 46

47 47 Time for Questions Wk01.1 Slide 47

Chapter 1. Introduction

Chapter 1. Introduction Chapter 1 Introduction Chapter Scope Introduce the Java programming language Program compilation and execution Problem solving in general The software development process Overview of object-oriented principles

More information

Objectives. Problem Solving. Introduction. An overview of object-oriented concepts. Programming and programming languages An introduction to Java

Objectives. Problem Solving. Introduction. An overview of object-oriented concepts. Programming and programming languages An introduction to Java Introduction Objectives An overview of object-oriented concepts. Programming and programming languages An introduction to Java 1-2 Problem Solving The purpose of writing a program is to solve a problem

More information

Chapter. Focus of the Course. Object-Oriented Software Development. program design, implementation, and testing

Chapter. Focus of the Course. Object-Oriented Software Development. program design, implementation, and testing Introduction 1 Chapter 5 TH EDITION Lewis & Loftus java Software Solutions Foundations of Program Design 2007 Pearson Addison-Wesley. All rights reserved Focus of the Course Object-Oriented Software Development

More information

CSE 114, Computer Science 1 Course Information. Spring 2017 Stony Brook University Instructor: Dr. Paul Fodor

CSE 114, Computer Science 1 Course Information. Spring 2017 Stony Brook University Instructor: Dr. Paul Fodor CSE 114, Computer Science 1 Course Information Spring 2017 Stony Brook University Instructor: Dr. Paul Fodor http://www.cs.stonybrook.edu/~cse114 Course Description Procedural and object-oriented programming

More information

Identifiers. Identifiers are the words a programmer uses in a program Some identifiers are already defined. Some are made up by the programmer:

Identifiers. Identifiers are the words a programmer uses in a program Some identifiers are already defined. Some are made up by the programmer: C1 D6 Obj: cont. 1.3 and 1.4, to become familiar with identifiers and to understand how programming languages work HW: p.51 #1.8 1.9 (Short Answers) Chapter 1 Test in two class days!! Do Now: How is the

More information

BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus

BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus BOSTON UNIVERSITY Metropolitan College MET CS342 Data Structures with Java Dr. V.Shtern (Fall 2011) Course Syllabus 1. Course Objectives Welcome to MET CS342 Data Structures with Java. The intent of this

More information

Introduction to CS102

Introduction to CS102 Introduction to CS102 CS102 Algorithms and Programming II Objectives Undertake real-world design task Work as a member of a team Practice communication in written & oral form Learn more programming techniques

More information

Administration Computers Software Algorithms Programming Languages

Administration Computers Software Algorithms Programming Languages Administration Computers Software Algorithms Programming Languages http://www.cs.sfu.ca/cc/130/johnwill/ This course does not use Canvas John Edgar 3 Come to class Read ahead Attend the labs You get practice

More information

Reviewing for the Midterm Covers chapters 1 to 5, 7 to 9. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Reviewing for the Midterm Covers chapters 1 to 5, 7 to 9. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 Reviewing for the Midterm Covers chapters 1 to 5, 7 to 9 Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 2 Things to Review Review the Class Slides: Key Things to Take Away Do you understand

More information

Object-Oriented Programming for Managers

Object-Oriented Programming for Managers 95-807 Object-Oriented Programming for Managers 12 units Prerequisites: 95-815 Programming Basics is required for students with little or no prior programming coursework or experience. (http://www.andrew.cmu.edu/course/95-815/)

More information

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017 San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1,2 and 3, Spring 2017 Course and Contact Information Instructor: Dr. Kim Office Location:

More information

San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015

San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015 Course and Contact Information San José State University Computer Science Department CS49J, Section 3, Programming in Java, Fall 2015 Instructor: Aikaterini Potika Office Location: MacQuarrie Hall 215

More information

3D Graphics Programming Mira Costa High School - Class Syllabus,

3D Graphics Programming Mira Costa High School - Class Syllabus, 3D Graphics Programming Mira Costa High School - Class Syllabus, 2009-2010 INSTRUCTOR: Mr. M. Williams COURSE GOALS and OBJECTIVES: 1 Learn the fundamentals of the Java language including data types and

More information

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Email: jtownsend@pkwy.k12.mo.us Course Description: The material for this course is the equivalent of one to two semesters of an entry

More information

Analysis of Algorithms Chapter 11. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Analysis of Algorithms Chapter 11. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 Analysis of Algorithms Chapter 11 Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 2 Scope Analysis of Algorithms: Efficiency goals The concept of algorithm analysis Big-Oh notation The

More information

CSC 1052 Algorithms & Data Structures II: Introduction

CSC 1052 Algorithms & Data Structures II: Introduction CSC 1052 Algorithms & Data Structures II: Introduction Professor Henry Carter Spring 2018 Programming This course... We will investigate a series of data structures and algorithms designed to solve common

More information

KOMAR UNIVERSITY OF SCIENCE AND TECHNOLOGY (KUST)

KOMAR UNIVERSITY OF SCIENCE AND TECHNOLOGY (KUST) Programming Concepts & Algorithms Course Syllabus Course Title Course Code Computer Department Pre-requisites Course Code Course Instructor Programming Concepts & Algorithms + lab CPE 405C Computer Department

More information

Recursion Chapter 17. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Recursion Chapter 17. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 Recursion Chapter 17 Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 2 Scope Introduction to Recursion: The concept of recursion Recursive methods Infinite recursion When to use (and

More information

Spring 2018 El Camino College E. Ambrosio. Course Syllabus

Spring 2018 El Camino College E. Ambrosio. Course Syllabus Course Syllabus Division: Mathematical Sciences Course Title: Computer Programming in Java Course #/Sections: CS 3/0127, 0128 Credit Hours: 4 Course Time/Room: Lecture: TTh 6:25 7:50 P.M./MBA 213 Lab:

More information

CS240: Programming in C

CS240: Programming in C CS240: Programming in C Lecture 1: Class overview. Cristina Nita-Rotaru Lecture 1/ Fall 2013 1 WELCOME to CS240 Cristina Nita-Rotaru Lecture 1/ Fall 2013 2 240 Team Instructor: Cristina Nita-Rotaru Special

More information

Java Programming. Zheng-Liang Lu. Java 308 Spring Department of Computer Science & Information Engineering National Taiwan University

Java Programming. Zheng-Liang Lu. Java 308 Spring Department of Computer Science & Information Engineering National Taiwan University Java Programming Zheng-Liang Lu Department of Computer Science & Information Engineering National Taiwan University Java 308 Spring 2019 Class Information Instructor: Zheng-Liang Lu Email: d00922011@ntu.edu.tw

More information

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018

San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018 San Jose State University College of Science Department of Computer Science CS151, Object-Oriented Design, Sections 1, 2, and 3, Spring 2018 Course and Contact Information Instructor: Suneuy Kim Office

More information

CSC 172 Data Structures and Algorithms. Fall 2017 TuTh 3:25 pm 4:40 pm Aug 30- Dec 22 Hoyt Auditorium

CSC 172 Data Structures and Algorithms. Fall 2017 TuTh 3:25 pm 4:40 pm Aug 30- Dec 22 Hoyt Auditorium CSC 172 Data Structures and Algorithms Fall 2017 TuTh 3:25 pm 4:40 pm Aug 30- Dec 22 Hoyt Auditorium Agenda Administrative aspects Brief overview of the course Hello world in Java CSC 172, Fall 2017, UR

More information

2 rd class Department of Programming. OOP with Java Programming

2 rd class Department of Programming. OOP with Java Programming 1. Structured Programming and Object-Oriented Programming During the 1970s and into the 80s, the primary software engineering methodology was structured programming. The structured programming approach

More information

CMPT 126: Introduction to Computing Science and Programming Fall 2007, Harbour Centre

CMPT 126: Introduction to Computing Science and Programming Fall 2007, Harbour Centre CMPT 126: Introduction to Computing Science and Programming Fall 2007, Harbour Centre Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University July 27, 2011 Meeting Time and

More information

B. Subject-specific skills B1. Problem solving skills: Supply the student with the ability to solve different problems related to the topics

B. Subject-specific skills B1. Problem solving skills: Supply the student with the ability to solve different problems related to the topics Zarqa University Faculty: Information Technology Department: Computer Science Course title: Programming LAB 1 (1501111) Instructor: Lecture s time: Semester: Office Hours: Course description: This introductory

More information

Spring 2003 Instructor: Dr. Shahadat Hossain. Administrative Matters Course Information Introduction to Programming Techniques

Spring 2003 Instructor: Dr. Shahadat Hossain. Administrative Matters Course Information Introduction to Programming Techniques 1 CPSC2620 Advanced Programming Spring 2003 Instructor: Dr. Shahadat Hossain 2 Today s Agenda Administrative Matters Course Information Introduction to Programming Techniques 3 Course Assessment Lectures:

More information

Introduction to Data Structures

Introduction to Data Structures 15-121 Introduction to Data Structures Lecture #1 Introduction 28 August 2019 Margaret Reid-Miller Today Course Administration Overview of Course A (very basic) Java introduction Course website: www.cs.cmu.edu/~mrmiller/15-121

More information

Announcements. 1. Forms to return today after class:

Announcements. 1. Forms to return today after class: Announcements Handouts (3) to pick up 1. Forms to return today after class: Pretest (take during class later) Laptop information form (fill out during class later) Academic honesty form (must sign) 2.

More information

COMP-202C: Foundations of Programming

COMP-202C: Foundations of Programming COMP-202C: Foundations of Programming McGill University, Summer 2015 Course Details Instructor: Sandeep Manjanna Office: McConnell Engineering Building (MC) 312 Office hours: Thursday 15:00 17:00 (or by

More information

CSc 2310 Principles of Programming (Java) Jyoti Islam

CSc 2310 Principles of Programming (Java) Jyoti Islam CSc 2310 Principles of Programming (Java) Jyoti Islam Are you in the right class??? Check the CRN of your registration Instructor Jyoti Islam PhD Student, concentration: Machine Learning 4+ years of Industry

More information

CSE 240 Introduction to Computer Architecture

CSE 240 Introduction to Computer Architecture What s All About?! Introduction to Computer Architecture The new CSE240: Not at 9am!!! New approach (bottom up) New textbook New instructor Well integrated into curriculum Cooler assignments (demo coming

More information

Instructions PLEASE READ (notice bold and underlined phrases)

Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercises wk02 Lab Basics First Lab of the course Required Reading Java Foundations - Section 1.1 - The Java Programming Language Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercise

More information

CSE 504: Compiler Design

CSE 504: Compiler Design http://xkcd.com/303/ Compiler Design Course Organization CSE 504 1 / 20 CSE 504: Compiler Design http://www.cs.stonybrook.edu/~cse504/ Mon., Wed. 2:30pm 3:50pm Harriman Hall 116 C. R. Ramakrishnan e-mail:

More information

CSC 111 Introduction to Computer Science (Section C)

CSC 111 Introduction to Computer Science (Section C) CSC 111 Introduction to Computer Science (Section C) Course Description: (4h) Lecture and laboratory. Rigorous introduction to the process of algorithmic problem solving and programming in a modern programming

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Course and contact information Instructor: Ron Mak Office Location: ENG 250 Email: Website: Office Hours: Section 4

More information

Welcome. Orientation to online CPS102 Computer Science 2 (Java 2)

Welcome. Orientation to online CPS102 Computer Science 2 (Java 2) Welcome Orientation to online CPS102 Computer Science 2 (Java 2) All online courses use Blackboard system, as soon as you login Blackboard in college s pipeline, please complete Blackboard Learn Student

More information

San José State University Department of Computer Science CS-144, Advanced C++ Programming, Section 1, Spring 2018

San José State University Department of Computer Science CS-144, Advanced C++ Programming, Section 1, Spring 2018 San José State University Department of Computer Science CS-144, Advanced C++ Programming, Section 1, Spring 2018 Course and Contact Information Instructor: Office Location: Telephone: Email: Office Hours:

More information

AP Computer Science A: Java Programming

AP Computer Science A: Java Programming AP Computer Science A: Java Programming Zheng-Liang Lu Department of Computer Science & Information Engineering National Taiwan University APcomSci 297 Spring 2018 Class Information Instructor: Zheng-Liang

More information

CS 210 Algorithms and Data Structures College of Information Technology and Engineering Weisberg Division of Engineering and Computer Science

CS 210 Algorithms and Data Structures College of Information Technology and Engineering Weisberg Division of Engineering and Computer Science CS 210 Algorithms and Data Structures College of Information Technology and Engineering Weisberg Division of Engineering and Computer Science Semester and Year: Fall 2008 Classroom Section, Meeting Times,

More information

file:///h:/de/course Production/DE Production/comp_1010_ol/_syllabus...

file:///h:/de/course Production/DE Production/comp_1010_ol/_syllabus... 1 of 9 9/22/2015 12:03 PM Course description The Undergraduate Calendar describes this course as follows: An introduction to computer programming using a procedural high level language. Not to be held

More information

Introduction to Programming System Design CSCI 455x (4 Units)

Introduction to Programming System Design CSCI 455x (4 Units) Introduction to Programming System Design CSCI 455x (4 Units) Description This course covers programming in Java and C++. Topics include review of basic programming concepts such as control structures,

More information

Syllabus COSC-051-x - Computer Science I Fall Office Hours: Daily hours will be entered on Course calendar (or by appointment)

Syllabus COSC-051-x - Computer Science I Fall Office Hours: Daily hours will be entered on Course calendar (or by appointment) Syllabus COSC-051-x - Computer Science I Fall 2018 Instructor: Jeremy Bolton, Ph.D. Asst Teaching Professor Department of Computer Science Office: TBD (see Course calendar for office hours) Email: jeremy.bolton@georgetown.edu

More information

San José State University Department of Computer Science CS151, Object Oriented Design, Section 04, Fall, 2016 (42968)

San José State University Department of Computer Science CS151, Object Oriented Design, Section 04, Fall, 2016 (42968) San José State University Department of Computer Science CS151, Object Oriented Design, Section 04, Fall, 2016 (42968) Course and Contact Information Instructor: Office Location: Vidya Rangasayee MH229

More information

CS2013 Course Syllabus Spring 2018 Lecture: Mon/Wed 2:00 P.M. 2:50 P.M. SH C259 Lab: Mon/Wed 2:50 P.M. 4:00 P.M. SH C259

CS2013 Course Syllabus Spring 2018 Lecture: Mon/Wed 2:00 P.M. 2:50 P.M. SH C259 Lab: Mon/Wed 2:50 P.M. 4:00 P.M. SH C259 CS2013 Course Syllabus Spring 2018 Lecture: Mon/Wed 2:00 P.M. 2:50 P.M. SH C259 Lab: Mon/Wed 2:50 P.M. 4:00 P.M. SH C259 Instructor Course name Credits Contact hours Text book Course Information Course

More information

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department

NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department NEW YORK CITY COLLEGE OF TECHNOLOGY/CUNY Computer Systems Technology Department COURSE: CST1201 Programming Fundamentals (2 class hours, 2 lab hours, 3 credits) Course Description: This course is an intensive

More information

Computer Science 210: Data Structures

Computer Science 210: Data Structures Computer Science 210: Data Structures Welcome to Data Structures! Data structures are fundamental building blocks of algorithms and programs Csci 210 is a study of data structures design efficiency implementation

More information

ITT Technical Institute. SD1420 Introduction to Java Programming Onsite and Online Course SYLLABUS

ITT Technical Institute. SD1420 Introduction to Java Programming Onsite and Online Course SYLLABUS ITT Technical Institute SD1420 Onsite and Online Course SYLLABUS Credit hours: 4.5 Contact/Instructional hours: 56 (34 Theory Hours, 22 Lab Hours Prerequisite(s and/or Corequisite(s: Prerequisite: PT1420

More information

Cleveland State University

Cleveland State University Cleveland State University CIS 260/500 Introduction to Programming (4 credits). Spring 2015 Section 2/ 50 Class Nbr. 1810/1855 Tue, Thu 12:30 PM 2:20 PM Section 2/ 50 Class Nbr. 1813/1856. Tue, Thu 4:00

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Section 1 (Class) Sections 2 and 3 (Labs) Spring 2019 Course and Contact Information Instructor: Ron Mak Office Location:

More information

CS/SE 153 Concepts of Compiler Design

CS/SE 153 Concepts of Compiler Design San José State University Department of Computer Science CS/SE 153 Concepts of Compiler Design Section 1 Fall 2018 Course and Contact Information Instructor: Ron Mak Office Location: ENG 250 Email: ron.mak@sjsu.edu

More information

CMPE/SE 135 Object-Oriented Analysis and Design

CMPE/SE 135 Object-Oriented Analysis and Design Course and Contact Information San José State University Department of Computer Engineering CMPE/SE 135 Object-Oriented Analysis and Design Instructor: Ron Mak Office Location: ENG 250 Email: ron.mak@sjsu.edu

More information

CMPE 152 Compiler Design

CMPE 152 Compiler Design San José State University Department of Computer Engineering CMPE 152 Compiler Design Section 1 (Class) Sections 2 and 3 (s) Fall 2018 Course and Contact Information Instructor: Ron Mak Office Location:

More information

Review for Midterm. Instructor: Scott Kristjanson CMPT 135 SFU Surrey, Spring 2016

Review for Midterm. Instructor: Scott Kristjanson CMPT 135 SFU Surrey, Spring 2016 Review for Midterm Instructor: Scott Kristjanson CMPT 135 SFU Surrey, Spring 2016 2 What will be covered by the Midterm? Selected material from these topics: Assignment 2 - Parts A, B, C1-C2 Assignment

More information

Oklahoma State University Institute of Technology Face-to-Face Common Syllabus Fall 2017

Oklahoma State University Institute of Technology Face-to-Face Common Syllabus Fall 2017 Oklahoma State University Institute of Technology Face-to-Face Common Syllabus Fall 2017 ITD 1253 Object-Oriented Programming Using C# Students learn how to design, code, and test applications in C# using

More information

CMPUT 391 Database Management Systems. Fall Semester 2006, Section A1, Dr. Jörg Sander. Introduction

CMPUT 391 Database Management Systems. Fall Semester 2006, Section A1, Dr. Jörg Sander. Introduction CMPUT 391 Database Management Systems Fall Semester 2006, Section A1, Dr. Jörg Sander Introduction University of Alberta 1 Objectives of Lecture 1 Get a rough initial idea about the content of the course:

More information

Boca Raton Community High School AP Computer Science A - Syllabus 2009/10

Boca Raton Community High School AP Computer Science A - Syllabus 2009/10 Boca Raton Community High School AP Computer Science A - Syllabus 2009/10 Instructor: Ronald C. Persin Course Resources Java Software Solutions for AP Computer Science, A. J. Lewis, W. Loftus, and C. Cocking,

More information

San José State University Department of Computer Science CS151, Section 04 Object Oriented Design Spring 2018

San José State University Department of Computer Science CS151, Section 04 Object Oriented Design Spring 2018 San José State University Department of Computer Science CS151, Section 04 Object Oriented Design Spring 2018 Course and Contact Information Instructor: Vidya Rangasayee Office Location: MH 213 Telephone:

More information

VE281 Data Structures and Algorithms. Introduction and Asymptotic Algorithm Analysis

VE281 Data Structures and Algorithms. Introduction and Asymptotic Algorithm Analysis VE281 Data Structures and Algorithms Introduction and Asymptotic Algorithm Analysis Time and Location Time: Tuesday 10:00-11:40 am, Thursday 10:00-11:40 am. Location: Dong Xia Yuan 200 2 Instructor Weikang

More information

This course supports the assessment for Scripting and Programming Applications. The course covers 4 competencies and represents 4 competency units.

This course supports the assessment for Scripting and Programming Applications. The course covers 4 competencies and represents 4 competency units. This course supports the assessment for Scripting and Programming Applications. The course covers 4 competencies and represents 4 competency units. Introduction Overview Advancements in technology are

More information

ITT Technical Institute. TB143 Introduction to Personal Computers Onsite and Online Course SYLLABUS

ITT Technical Institute. TB143 Introduction to Personal Computers Onsite and Online Course SYLLABUS ITT Technical Institute TB143 Onsite and Online Course SYLLABUS Credit hours: 4 Contact/Instructional hours: 50 (30 Theory Hours, 20 Lab Hours) Prerequisite(s) and/or Corequisite(s): None. Course Description:

More information

MEAP Edition Manning Early Access Program Get Programming with Java Version 1

MEAP Edition Manning Early Access Program Get Programming with Java Version 1 MEAP Edition Manning Early Access Program Get Programming with Java Version 1 Copyright 2018 Manning Publications For more information on this and other Manning titles go to www.manning.com welcome First,

More information

Part III Appendices 165

Part III Appendices 165 Part III Appendices 165 Appendix A Technical Instructions Learning Outcomes This material will help you learn how to use the software you need to do your work in this course. You won t be tested on it.

More information

CS/SE 153 Concepts of Compiler Design

CS/SE 153 Concepts of Compiler Design San José State University Department of Computer Science CS/SE 153 Concepts of Compiler Design Course and Contact Information Instructor: Ron Mak Office Location: ENG 250 Email: Website: Office Hours:

More information

Computer Programming II C++ (830)

Computer Programming II C++ (830) DESCRIPTION This is an advanced course in computer programming/software engineering and applications. It reviews and builds on the concepts introduced in CP I. It introduces students to dynamic data structures,

More information

San José State University Department of Computer Science CS049J, Programming in Java, Section 2, Fall, 2016

San José State University Department of Computer Science CS049J, Programming in Java, Section 2, Fall, 2016 Course and Contact Information San José State University Department of Computer Science CS049J, Programming in Java, Section 2, Fall, 2016 Instructor: Office Location: Fabio Di Troia DH282 Telephone: Email:

More information

CSC 015: FUNDAMENTALS OF COMPUTER SCIENCE I

CSC 015: FUNDAMENTALS OF COMPUTER SCIENCE I CSC 015: FUNDAMENTALS OF COMPUTER SCIENCE I Lecture 1: Class Introduction DR. BO TANG ASSISTANT PROFESSOR HOFSTRA UNIVERSITY 1 9/7/16 CSC15 - Python OUTLINE What is Computer Science? What is this Class

More information

McGill University COMP-202A Introduction to Computing I Summer 2006 webct.mcgill.ca

McGill University COMP-202A Introduction to Computing I Summer 2006 webct.mcgill.ca McGill University COMP-202A Introduction to Computing I Summer 2006 webct.mcgill.ca Time and Place * Days and Times: Tuesdays from 2:35-4:25 PM May 02 to May 12 ENGMC 11 Thursdays from 2:35-4:55 PM May

More information

ITT Technical Institute. SD2720 Advanced Software Development Using Java Onsite and Online Course SYLLABUS

ITT Technical Institute. SD2720 Advanced Software Development Using Java Onsite and Online Course SYLLABUS ITT Technical Institute SD2720 Advanced Software Development Using Java Onsite and Online Course SYLLABUS Credit hours: 3 Contact/Instructional hours: 40 (20 Theory Hours, 20 Lab Hours) Prerequisite(s)

More information

CIS 101 Orientation Document Fall 2017

CIS 101 Orientation Document Fall 2017 CIS 101 Orientation Document Fall 2017 Fall 2017 ONLINE section 23989 To be successful in an online section you must be motivated, disciplined, and able to read and understand the material in the books

More information

Overview of the Class

Overview of the Class Overview of the Class Copyright 2015, Pedro C. Diniz, all rights reserved. Students enrolled in the Compilers class at the University of Southern California (USC) have explicit permission to make copies

More information

College Board. AP CS A Labs Magpie, Elevens, and Picture Lab. New York: College Entrance Examination Board, 2013.

College Board. AP CS A Labs Magpie, Elevens, and Picture Lab. New York: College Entrance Examination Board, 2013. AP Computer Science August 2014 June 2015 Class Description AP Computer Science is the second class after Pre-AP Computer Science that together teach the fundamentals of object-oriented programming and

More information

CISC 3130 Data Structures Fall 2018

CISC 3130 Data Structures Fall 2018 CISC 3130 Data Structures Fall 2018 Instructor: Ari Mermelstein Email address for questions: mermelstein AT sci DOT brooklyn DOT cuny DOT edu Email address for homework submissions: mermelstein DOT homework

More information

Object Oriented Concepts and Programming (CSC244) By Dr. Tabbasum Naz

Object Oriented Concepts and Programming (CSC244) By Dr. Tabbasum Naz Object Oriented Concepts and Programming (CSC244) By Dr. Tabbasum Naz tabbasum.naz@ciitlahore.edu.pk Course Outline Course Title Object Oriented Concepts and Course Code Credit Hours 4(3,1) Programming

More information

Computer Technology Division. Course Syllabus for: COMT Spring Instructor: Joe Bolen

Computer Technology Division. Course Syllabus for: COMT Spring Instructor: Joe Bolen Computer Technology Division Course Syllabus for: COMT 11009 Spring 2013 Instructor: Joe Bolen Course: Computer Assembly & Configuration COMT 11009 Spring 2013 / Tuscarawas / Call # 12133 / Section 800

More information

COLLEGE OF DUPAGE CIS 2542 Advanced C++ with Data Structure Applications Course Syllabus

COLLEGE OF DUPAGE CIS 2542 Advanced C++ with Data Structure Applications Course Syllabus Carolyn England COD Main #: 942-4125 Voicemail Ext. 4125 Office: BIC1544B (Division Office TEC1034) Mailbox: BIC1E01 Office Hours: M 12:05 pm 1:45 pm Tu 12:05 pm 1:45 pm W 12:05 pm 1:45 pm Th 9:00 am 10:40

More information

TTh 9.25 AM AM Strain 322

TTh 9.25 AM AM Strain 322 TTh 9.25 AM - 10.40 AM Strain 322 1 Questions v What is your definition of client/server programming? Be specific. v What would you like to learn in this course? 2 Aims and Objectives v Or, what will you

More information

Java Programming. Zheng-Liang Lu. Java 301 Summer Department of Computer Science & Information Engineering National Taiwan University

Java Programming. Zheng-Liang Lu. Java 301 Summer Department of Computer Science & Information Engineering National Taiwan University Java Programming Zheng-Liang Lu Department of Computer Science & Information Engineering National Taiwan University Java 301 Summer 2018 Class Information Instructor: Zheng-Liang Lu Email: d00922011@csie.ntu.edu.tw

More information

CMPSCI 187 / Spring 2015 Hanoi

CMPSCI 187 / Spring 2015 Hanoi Due on Thursday, March 12, 2015, 8:30 a.m. Marc Liberatore and John Ridgway Morrill I N375 Section 01 @ 10:00 Section 02 @ 08:30 1 Contents Overview 3 Learning Goals.................................................

More information

CoSci 440 SYLLABUS Programming in C++ INSTRUCTOR Mari Rettke cell SECTION : and 13345

CoSci 440 SYLLABUS Programming in C++ INSTRUCTOR Mari Rettke cell SECTION : and 13345 CoSci 440 SYLLABUS Programming in C++ INSTRUCTOR Mari Rettke samusher@aol.com 818.470.8419 - cell SECTION : 13327 and 13345 Course Description Covers C++ language and object-oriented programming paradigm.

More information

Data Structures and Algorithms

Data Structures and Algorithms Data Structures and Algorithms Lecture 1: Course Overview Lilia Georgieva 2004 Goodrich, Tamassia What is this course about? We will study moderately complex data structures and algorithms that are essential

More information

COMP Foundations of Programming

COMP Foundations of Programming COMP 202 - Foundations of Programming McGill University, Fall 2018 Course Details Instructor: Joseph Vybihal Office: McConnell Engineering Building (MC) 323 Office hours: TBA Section 1 Contact info: jvybihal@cs.mcgill.ca

More information

Introduction to Java Programming

Introduction to Java Programming Introduction to Java Programming Lecture 1 CGS 3416 Spring 2017 1/9/2017 Main Components of a computer CPU - Central Processing Unit: The brain of the computer ISA - Instruction Set Architecture: the specific

More information

C Programming for Engineers Introduction

C Programming for Engineers Introduction C Programming for Engineers Introduction ICEN 360 Spring 2017 Prof. Dola Saha 1 Introductions Instructor Prof. Dola Saha, PhD University of Colorado Boulder http://www.albany.edu/faculty/dsaha/ dsaha@albany.edu

More information

CS 0449 Intro to Systems Software Fall Term: 2181

CS 0449 Intro to Systems Software Fall Term: 2181 CS 0449 Intro to Systems Software Fall Term: 2181 Class Recitation Recitation Recitation Time: 11:00am 12:15pm 03:00pm 03:50pm 10:00am 10:50am 09:00am 09:50am Days: TH T W F Number 19730 20024 19731 27127

More information

Data Structures and Algorithms

Data Structures and Algorithms CS 3114 Data Structures and Algorithms 1 Trinity College Library Univ. of Dublin Instructors and Course Information 2 William D McQuain Email: Office: Office Hours: wmcquain@cs.vt.edu 634 McBryde Hall

More information

Advanced Programming Concepts. CIS 15 : Spring 2007

Advanced Programming Concepts. CIS 15 : Spring 2007 Advanced Programming Concepts CIS 15 : Spring 2007 Mondays and Thursdays 12:15 pm to 1:30 pm 232 Ingersoll Extension Instructor: Chipp Jansen (not Tennenbaum as listed) E-mail: chipp@sci.brooklyn.cuny.edu

More information

CS503 Advanced Programming I CS305 Computer Algorithms I

CS503 Advanced Programming I CS305 Computer Algorithms I Syllabus: CS503 Advanced Programming I CS305 Computer Algorithms I Course Number: CS503-50/CS305-50 Course Title: Advanced Programming I/Computer Algorithms I Instructor: Richard Scherl Office: Howard

More information

CS/ENGRD 2110 Object-Oriented Programming and Data Structures Spring 2012 Thorsten Joachims

CS/ENGRD 2110 Object-Oriented Programming and Data Structures Spring 2012 Thorsten Joachims CS/ENGRD 2110 Object-Oriented Programming and Data Structures Spring 2012 Thorsten Joachims Lecture 1: Overview http://courses.cs.cornell.edu/cs2110 1 Course Staff Instructor Thorsten Joachims (tj@cs.cornell.edu)

More information

Introduction to Computing Systems: From Bits and Gates to C and Beyond 2 nd Edition

Introduction to Computing Systems: From Bits and Gates to C and Beyond 2 nd Edition Lecture Goals Introduction to Computing Systems: From Bits and Gates to C and Beyond 2 nd Edition Yale N. Patt Sanjay J. Patel Original slides from Gregory Byrd, North Carolina State University Modified

More information

CSC 210 COMPUTER SCIENCE II

CSC 210 COMPUTER SCIENCE II CSC 210 COMPUTER SCIENCE II PRESENTED AND APPROVED: NOVEMBER 2, 2012 EFFECTIVE: FALL 2013-14 Prefix & Number CSC 210 Course : Computer Science II Purpose of this submission: New Course New Change/Updated

More information

Bonus Puzzle #1 Random Doubles [0,5] Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Bonus Puzzle #1 Random Doubles [0,5] Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 Bonus Puzzle #1 Random Doubles [0,5] Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 2 Bonus Puzzle #1 Write an expression to calculate double random numbers from [0, 5.000000000] inclusive

More information

Algorithms and Data Structures Spring 2008

Algorithms and Data Structures Spring 2008 Algorithms and Data Structures Spring 2008 Instructors: Professor Joe Fuller Dr. Sarita Bassil Office: 205B Gullickson Hall 207 Gullickson Hall Phone: 696-6204 696-5444 Email: fullerj@marshall.edu bassil@marshall.edu

More information

Homeschool Programming, Inc.

Homeschool Programming, Inc. Online Course Overview Course Title: TeenCoder: Java Programming TeenCoder: Java Programming Online Course Syllabus and Planner Updated November, 2015 Online ISBN: 978-0-9887070-2-3, published 2015 by

More information

CMPE012 Computer Engineering 12 (and Lab) Computing Systems and Assembly Language Programming. Summer 2009

CMPE012 Computer Engineering 12 (and Lab) Computing Systems and Assembly Language Programming. Summer 2009 CMPE012 Computer Engineering 12 (and Lab) Computing Systems and Assembly Language Programming Summer 2009 About these notes Originally by Cyrus Bazeghi Overhauled by Andrea Di Blas Modified by me (Alexandra

More information

C++ Spring Break Packet 11 The Java Programming Language

C++ Spring Break Packet 11 The Java Programming Language C++ Spring Break Packet 11 The Java Programming Language! Programmers write instructions in various programming languages, some directly understandable by computers and others requiring intermediate translation

More information

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017 Introduction to Java Lecture 1 COP 3252 Summer 2017 May 16, 2017 The Java Language Java is a programming language that evolved from C++ Both are object-oriented They both have much of the same syntax Began

More information

CompSci 125 Lecture 02

CompSci 125 Lecture 02 Assignments CompSci 125 Lecture 02 Java and Java Programming with Eclipse! Homework:! http://coen.boisestate.edu/jconrad/compsci-125-homework! hw1 due Jan 28 (MW), 29 (TuTh)! Programming:! http://coen.boisestate.edu/jconrad/cs125-programming-assignments!

More information

CS 240 Fall Mike Lam, Professor. Just-for-fun survey:

CS 240 Fall Mike Lam, Professor. Just-for-fun survey: CS 240 Fall 2014 Mike Lam, Professor Just-for-fun survey: http://strawpoll.me/2421207 Today Course overview Course policies Python Motivation Computers are digital Data is stored in binary format (1's

More information

Introduction to Java Chapters 1 and 2 The Java Language Section 1.1 Data & Expressions Sections

Introduction to Java Chapters 1 and 2 The Java Language Section 1.1 Data & Expressions Sections Introduction to Java Chapters 1 and 2 The Java Language Section 1.1 Data & Expressions Sections 2.1 2.5 Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013 2 Scope Introduce the Java programming

More information