CSE 115 October 27 - 31, 2008.

Slides:



Advertisements
Similar presentations
CSE 115 Week 13 April , Announcements April 7 – Exam 9 April 7 – Exam 9 April 10 – Last day to turn in Lab 7 for any credit, last day to turn.
Advertisements

CSE 115 Week 11 March , Announcements March 26 – Exam 7 March 26 – Exam 7 March 28 – Resign Deadline March 28 – Resign Deadline Lab 7 turned.
CSE 115 Week 10 March , Announcements March 21 – Lab 7 Q & A in lecture March 21 – Lab 7 Q & A in lecture March 26 – Exam 7 March 26 – Exam.
CSE 115 Week 14 April , Announcements April 14 – Exam 10 April 14 – Exam 10 April 18 – Last day to turn in Lab 8 for any credit April 18.
Lecture 23 CSE 331 Oct 24, Temp letter grades assigned See the blog post for more details.
CSE 115 Week 6 February , Announcements Software Installation Fest – Take 2 Software Installation Fest – Take 2 –Tuesday 2/ –Wednesday.
CSE 115 Week 7 & 8 February , 2008 March 3 – 7, 2008.
Spring 2008 Mark Fontenot CSE 1341 Principles of Computer Science I Note Set 1 1.
COMP 151: Computer Programming II Spring Course Topics Review of Java and basics of software engineering (3 classes. Chapters 1 and 2) Recursion.
Spring 2008 Mark Fontenot CSE Honors Principles of Computer Science I Note Set 1 1.
Object Orientation An Object oriented approach views systems and programs as a collection of interacting objects. An object is a thing in a computer system.
WELCOME PARENTS Carver Robotics Parent Meeting. STUDENT INFO SHEET Handed out in class Must be returned Required for participation in tournaments This.
CS 222: Immediate C++ Class Hour: Section: MWF 2:15PM - 3:05PM. McGraw 115.
Principles of Computer Science I Honors Section Note Set 1 CSE 1341 – H 1.
CS-1030 Dr. Mark L. Hornick 1 CS-1030 – Software Design 2 Dr. Mark L. Hornick web: people.msoe.edu/~hornick webCT: webct.msoe.edu.
MGS 351 Introduction to Management Information Systems RECITATION 8.
Inspired by the Oulipu. The 3 Tenets of OO Encapsulation Polymorphism Inheritance.
Mrs. Cord’s Chemistry Class Room 43P Wish list: collect $5 cash or check (make check to WHS, in memo put-Cord Labs) for our Halloween Lab Holiday Lab.
Spring 2008 Mark Fontenot CSE 1341 – Honors Principles of Computer Science I Note Set 1 1.
Document Architectures/ Language Programming 2 CS4146/CS4703 Nikola Nikolov (Nik) office: CS1-030; tel.: Best time.
BSHS 332 Week 3 Individual Dynamics of Ethics Paper Check this A+ tutorial guideline at 332/BSHS-332-Week-3-Individual-
IT 242 Week 7 DQ 2 To purchase this material link 242-Week-7-DQ-2 For more courses visit our website
Teacher Contact Information address - Phone number – 215 – 944 – 1154 Website is always available for you.
Andy Wang Object Oriented Programming in C++ COP 3330
September 19 Th Announcements
An introduction to the iBSc
Community Project Timeline – What are my deadlines?
Inheritance and Big O And your first reading assignment
Programming Languages Review CSE 3302 Spring 2017
UNIT 1 Matter Day 41 October 26, 2017
Ms. Bullock 8th Grade Science Lesson Plans
Ms. Bullock 8th Grade Science Lesson Plans
Object Oriented Concepts
CBSE 10 th Result About CBSE  The Central Board of Secondary Education was formed on date 03 rd November It was established to provide the.
3 Fundamentals of Object-Oriented Programming
Science 10 – Unit 2 – Weather Dynamics
Do Now Heading: Dot Motion Diagrams
CS 6021 Advanced Computer Architecture
Andy Wang Object Oriented Programming in C++ COP 3330
8 FRQ Assignment Super fun practice!!.
NRS 220 Alterations in Health III
CSE 115 September 29 – October 3, 2008.
Reminders Connect Schedule
Reminders & Announcements
Reminders & Announcements
Object Oriented Programming
Post High School Planning
Reminders & Announcements
Study Support Time Management Do you need help with any of these?
CSE 115 August 29, 2008.
No Warm-Up 5/16/17 Happy Tuesday!  We have 8 school days left this year! (and 1 more Tuesday after today!) You can choose your seat today; if you move.
CSE 115 September 29 – October 3, 2008.
Where are we in the course?
CSE 115 September 3, 2008.
Cornell Notes Note-taking strategy that will
Reminders Connect Schedule
CSE 115 November , 2008.
SE-1021 Software Development 2
Unit 2 Review.
CSE 115 September 12, 2008.
October 29th – November 2nd, 2018 Reminders & Announcements
February , 2009 CSE 113 B.
No Warm-Up 5/15/17 Happy Monday!  We have 9 school days left this year! (and 1 more Monday after today!) You can choose your seat today; if you move.
CSE 115 October , 2008.
CS114B Introduction to Computer Science II
Cornell Notes Note-taking strategy that will
No Warm-Up 5/18/17 Happy Thursday!  We have 6 school days left this year! (and 1 more Thursday after today!) You can choose your seat today; if you.
Computer Engineering Department Islamic University of Gaza
Object Oriented Programming(OOP)
Responding to Mock Writing Exams
Presentation transcript:

CSE 115 October 27 - 31, 2008

Announcements Lab 7 due day before recitation meets week of November 3rd Exam 4 is 11/7 Resign Deadline is 11/7 Check website for new grades If you have a paper tax – pick up your paper from me Exam 3 passed back on 10/29

private java.util.List<Igraphic> _graphicsList; java.util.List<Cat> bagOfCats;

Polymorphism This idea of the declared type and actual type being different and then being able to choose functionality dynamically at run-time based on type is the idea of polymorphism. Polymorphism is one of the key concepts in object oriented programming. The other two key concepts are encapsulation and inheritance (both of which we’ve already covered)