BIT 142:Programming & Data Structures in C#. BIT 143  Offered next term  Continues where this leaves off  A couple of weeks to review OOP, object composition,

Slides:



Advertisements
Similar presentations
BIT 142: Intermediate Programming
Advertisements

COMP171 Data Structures and Algorithms Spring 2009.
CS 46101–600/CS Design and Analysis of Algorithms Dr. Angela Guercio Spring 2010.
COMP171 Data Structures and Algorithms Spring 2009.
CSIS-385: Analysis of Algorithms Dr. Eric Breimer.
CS 280 Data Structures Professor John Peterson. Goals Understand “Programming in the small” Java programming Know what’s under the hood in complex libraries.
CS 280 Data Structures Professor John Peterson. Goals Understand “Programming in the small” Java programming Know what’s under the hood in complex libraries.
Midterm Exam Two Tuesday, November 25 st In class cumulative.
Data Structures & Agorithms Lecture-1: Introduction.
Computer Science 102 Data Structures and Algorithms V Fall 2009 Lecture 1: administrative details Professor: Evan Korth New York University 1.
COMP 151: Computer Programming II Spring Course Topics Review of Java and basics of software engineering (3 classes. Chapters 1 and 2) Recursion.
BIT 143:Programming & Data Structures in C# Instructor: Mike Panitz
BIT 115: Introduction To Programming1 Sit in front of a computer Log in –Username: 230class –password: –domain: student Bring up the course web.
CSC172 INTRO PEPPER. COURSE GOALS Strong Java programmer Thorough code documentor Test driven programming Think in terms of objects Data structures –
BIT 142:Programming & Data Structures in C#. BIT 142: Intermediate Programming2 Today Quizzes Exam Review Catch-up Work.
BIT 142:Programming & Data Structures in C#. A2 due date  A2 is due this Friday, June 12 th, by 11:30am BIT 142: Intermediate Programming2.
Computer Science 102 Data Structures and Algorithms CSCI-UA.0102 Fall 2012 Lecture 1: administrative details Professor: Evan Korth New York University.
COMP2012 Object-Oriented Programming and Data Structures Fall 2015.
BIT 142:Programming & Data Structures in C#. BIT 142: Intermediate Programming2 Today OOP! –Basic classes, with instance methods –Instance variables –public/private,
BIT 143: Programming & Data Structures in C#. Midterm Question #6 Redo via Extra Question On Final  In addition to the 150 points for the final exam…
1 1.Log in to the computer in front of you –Temp account: 231class / 2.Update your in Cascadia's system –If I need to you I'll use.
CSS 290: Video Games and Computer Programming. CSS 2902 Reading: Conditional Statements PLAD Ch 4 –The objective for this book is to provide you with.
Final Exam Tuesday, December 22nd 2:00 - 3:50pm room 102 Warren Weaver Hall.
CSS 290: Video Games and Computer Programming. CSS 2902 Reading: Conditional Statements PLAD Ch 4 –The objective for this book is to provide you with.
Grade Scale Test 1 Results: Average class score after partial credit: XX.X% Commonly missed questions: # _________________ All of this material will be.
BIT 143: Programming & Data Structures in C#. Today  UWB CSS Advisor Stacey Doran will give a brief talk at the start of class  Quiz  BST.Remove review.
BIT 143:Programming & Data Structures in C++ Instructor: Mike Panitz
BIT 142:Programming & Data Structures in C#. BIT 142: Intermediate Programming2.
BIT 143: Programming – Data Structures It is assumed that you will also be present for the slideshow for the first day of class. Between that slideshow.
Course Info Instructor U.T. Nguyen Office: CSEB Office hours: Tuesday, 14:30-15:30 Thursday, 12:00-12:45 By.
BIT 142:Programming & Data Structures in C#. 2 Syllabus : Book info BIT 142 uses the book fairly extensively –I would recommend getting it The edition.
Data Structures and Algorithms in Java AlaaEddin 2012.
BIT 143: Programming-Data Structures1 Before Class Begins: Sit in front of a computer Log in –IF you don’t yet have an account, you can use the guest account.
Exam 2 Review CS 3358 Data Structures. 90 Total Points – 50 Points Writing Programs – 25 Points Tracing Algorithms, determining results, and drawing pictures.
BIT 143:Programming & Data Structures in C#. BIT 1432 Today Recursion Midterm exam review Next topic: Binary Search Trees! With recursion! (Ch 24.7)
CMPT 238 Data Structures Instructor: Tina Tian. General Information Office: RLC 203A Office Hour: Tue and Fri 12:30 - 2:00PM.
BIT 142:Programming & Data Structures in C#. BIT 143  Continues where this leaves off  A couple of weeks to review OOP, object composition, Big “Oh”
1 1.Log in to the computer in front of you –Temp account: 210class / 2.Update your in Cascadia's system –If I need to you I'll use.
BIT 143:Programming & Data Structures in C# Instructor: Mike Panitz
COMP9024: Data Structures and Algorithms Course Outline Hui Wu Session 1, 2016
BIT 143: Programming & Data Structures in C#
CS16: Introduction to Algorithms and Data Structures
Midterm Review.
CMPT 238 Data Structures Instructor: Tina Tian.
Computer Science 102 Data Structures CSCI-UA
Log in to the computer in front of you
Exam 2 Review CS 3358 Data Structures.
FINAL EXAM INFORMATION
FINAL EXAM INFORMATION
Exam 2 Review CS 3358 Data Structures.
EE 422C Final Exam Review.
Exam 2 Review CS 3358 Data Structures.
Log in to the computer in front of you
Log in to the computer in front of you
BIT 142:Programming & Data Structures in C#
BIT 143: Programming & Data Structures in C#
BIT 143: Programming & Data Structures in C#
BIT 143:Programming & Data Structures in C#
CMSC201 Computer Science I for Majors Final Exam Information
BIT 115: Introduction To Programming
BIT 142:Programming & Data Structures in C#
CSS 290: Video Games and Computer Programming
BIT 143:Programming & Data Structures in C#
BIT 142:Programming & Data Structures in C#
BIT 142:Programming & Data Structures in C#
CMPT 238 Data Structures Instructor: Tina Tian.
BIT 142:Programming & Data Structures in C#
BIT 142 In-Class, First day.
BIT 142: Intermediate Programming
BIT 143:Programming & Data Structures in C#
Presentation transcript:

BIT 142:Programming & Data Structures in C#

BIT 143  Offered next term  Continues where this leaves off  A couple of weeks to review OOP, object composition, Big “Oh” notation, etc  Then moves on to basic data structures  Stacks, Queues, Linked Lists  Recursion  Binary Search Trees  QuickSort, MergeSort BIT 142: Intermediate Programming2

BIT 143  Similar/same format  homework assignments  Weekly PCEs  Students will be strongly grouped up at the start of the term  Enrollment is open – sign up while there’s still space!! BIT 142: Intermediate Programming3

Today  Quiz  CIEs  Searching, Sorting Algorithms  Big Oh Notation  There are no Big Oh exercises in this week's PCEs  UWB CSS Advisor Stacey Doran will give a brief talk at the end of class BIT 142: Intermediate Programming4

Next Lecture  Sorting & Searching Review  Big ‘Oh’ Review  Final Exam Q+A  Internship Coordinator Erika Jurmann will give a quick talk BIT 142: Intermediate Programming5

Final lecture of the quarter  Final exam  Photo ID will be required  Let me know if this is a problem  You have enough time to get a Cascadia Student ID, if nothing else  You can stay late (till 10:05pm)  Notify me if you want to start before 5:45pm BIT 142: Intermediate Programming6

7 Due Dates: What's due now?  PCE08  Outlines for Lesson 08 videos  I will accept Viewing quiz 08 instead of outlines  A3 (final version) due now  A4 (initial version)  Now is the official start to "It's been handed in when grade it or else it's a zero"

Due Dates: Due next week  PCE 09  Outline or Viewing quiz for lesson 09  A4 revision  This will be due 1 week from when it gets graded  probably next Thursday BIT 142: Intermediate Programming8

Next week: deactivate hand-ins  At the start of class we'll deactivate StudentTracker hand-ins for everything (homeworks, revisions, PCEs, viewing quizes)  EXCEPT FOR the Outline or Viewing quiz for lesson 10  This is due at the start of class, on the day of the final exam  We'll have an in-class lecture next week that covers the same material  There are NO PCEs (no coded exercises) BIT 142: Intermediate Programming9

Quiz, then CIEs  First do the quiz   Username: Student ID ( )  Password: Birthdate (MMDDYY)  Pad with leading zero if you need to  Example: Jan 13, 1999 would be BIT 142: Intermediate Programming10