CSC 108H: Introduction to Computer Programming

Slides:



Advertisements
Similar presentations
Introduction to Assembly language
Advertisements

GCSE COMPUTING Dan Gardner Session Objectives Gain an overview of the Computer Science curriculum at Key Stage 4 (GCSE). Understand.
ATS Programming Short Course I INTRODUCTORY CONCEPTS Tuesday, Jan. 20 th, 2009.
1 CSE1301 Computer Programming: Revision 1. 2 Topics Type of questions What do you need to know? About the exam Exam technique Staff consultation Sample.
1 9/28/07CS150 Introduction to Computer Science 1 Loops section 5.2, 5.4, 5.7.
Wednesday, 12/11/02, Slide #1 CS 106 Intro to Comp. Sci. 1 Wednesday, 12/11/02  QUESTIONS??  Today: CLOSING CEREMONIES!  HW #5 – Back Monday (12/16)
General Computer Science for Engineers CISC 106 Final Exam Review Dr. John Cavazos Computer and Information Sciences 05/18/2009.
1 CSE1301 Computer Programming: Lecture 35 Revision.
CSC 171 – FALL 2004 COMPUTER PROGRAMMING LECTURE 0 ADMINISTRATION.
Final Overview Fawzi Emad Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
CSE1301 Computer Programming: Revision. Topics Type of questions What do you need to know? About the exam Exam technique Sample questions.
1 Object Oriented Programming Computer Systems Engineering (D2) and Programming (P)
1 CSE1301 Computer Programming: Revision. 2 Topics Type of questions What do you need to know? About the exam Exam technique Staff consultation Revision.
CIS Computer Programming Logic
Course Introduction Software Engineering
ICS 102 Computer Programming University of Hail College of Computer Science & Engineering Computer Science and Software Engineering Department.
1 Revision Before Exam-I. 2 Exam-I Scope l We discussed the scope of Exam-I and decided to move the topic of file handling to the final exam l A previously.
Bilgisayar Mühendisliği Bölümü CENG 102 – Computer Programming Melek OKTAY Syllabus Administrative Information.
CSC 171 – FALL 2001 COMPUTER PROGRAMMING LECTURE 0 ADMINISTRATION.
File Structures CIS 256 Chapter 0 Summer 2011 Dr. Ahmad Saifan.
1 CSC 222: Computer Programming II Spring 2004 See online syllabus at: Course goals:
General Computer Science for Engineers CISC 106 James Atlas Computer and Information Sciences 2/10/2010.
1 CSE1301 Computer Programming: Revision. 2 Topics Type of questions What do you need to know? About the exam Exam technique Staff consultation Revision.
BIT 115: Introduction To Programming Instructor: Jon Peck
General Computer Science for Engineers CISC 106 Lecture 12 James Atlas Computer and Information Sciences 08/03/2009.
Lecture 15: Course Review BJ Furman ME 30 16MAY2011.
Computer Science A 1. Course plan Introduction to programming Basic concepts of typical programming languages. Tools: compiler, editor, integrated editor,
Principles of Imperative Computation Lecture 1 January 15 th, 2012.
1 CSE1301 Computer Programming: Where are we now in the CSE1301 syllabus?
TCCICOMPUTERCOAC HING.COM.  TCCI’s main focus is to develop logical skill of the students, so it will help students to write code their self in any.
COMP9024: Data Structures and Algorithms Course Outline Hui Wu Session 1, 2016
CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2012 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2012 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki.
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review Prof. Katherine Gibson.
CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2012 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2012 Marek Janicki.
CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki.
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review Prof. Katherine Gibson Prof. Jeremy Dixon.
CS140 – Computer Programming 1 Course Overview First Semester – Fall /1438 – 2016/2017 CS140 - Computer Programming 11.
CSC 108H: Introduction to Computer Programming
Elementary Programming Concepts Hannah Westra
Cen 112 C Programming Özgür Örnek.
Chapter 9 Repetition.
CSc 020: Programming Concepts and Methodology II
CSC 108H: Introduction to Computer Programming
CSC 458– Predictive Analytics I, Fall 2017, Intro. To Python
March 27 – Course introductions; Adts; Stacks and Queues
ECE 1304 Introduction to Electrical and Computer Engineering
CSC 108H: Introduction to Computer Programming
September 27 – Course introductions; Adts; Stacks and Queues
CSC 108H: Introduction to Computer Programming
TMC 1414 Introduction to Programming
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
Introduction.
Mohammad H. Mofrad University of Pittsburgh
Chapter 5 Repetition.
Chapter 9 Control Structures.
Arrays Syntax: type variableName[size];
Computer Programming 1 introduction to JAVA Lecture 1 Instructor: Ruba A. Salamah Islamic University of Gaza.
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review
Java Programming Review 1
Fundamental Programming
Principles of Imperative Computation
Recursion (part 1) October 25, 2006 ComS 207: Programming I (in Java)
CIS 110: Introduction to Computer Programming
Presentation transcript:

CSC 108H: Introduction to Computer Programming Summer 2011 Marek Janicki

Administration Codelab update. Exam is the 17th. Must get 40% to pass course. Remaining office hours for the course: Friday 2-4 Monday 12-2 Tuesday 12-2 August 11 2011

Exam/Course review. Basics: variable vs. value types expressions. August 11 2011

Exam/Course Review. Types: Booleans Floats Ints Strings Lists Dictionaries Files August 11 2011

Exam/Course Review Code structure: Loops Boolean Expressions Functions Classes August 11 2011

Exam/Course Review. Other: Nose Pickle Debugging (Test Cases) Sorting PseudoCode Complexity Docstrings Style August 11 2011

Exam/Course Review. Media/Guis will not be on the final. August 11 2011

Breaks August 11 2011

Overview. We've introduced most of the common tools of programming. Also a little bit of software engineering. And a little bit of theory. What's next? August 11 2011