Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CSE205 Lecture 14

CSE205 Lecture 14

Object-Oriented Programming and Data Structures
Midterm Review
(202203)

Javier Gonzalez-Sanchez

September 24, 2021
Tweet

More Decks by Javier Gonzalez-Sanchez

Other Decks in Programming

Transcript

  1. jgs CSE 205 Object-Oriented Programming and Data Structures Lecture 14:

    Midterm Review Dr. Javier Gonzalez-Sanchez [email protected] javiergs.engineering.asu.edu | javiergs.com PERALTA 230U Office Hours: By appointment
  2. Javier Gonzalez-Sanchez | CSE205 | Fall 2021 | 2 jgs

    Announcement § Do not forget to submit your homework 03
  3. jgs The following slides shows some examples related to some

    topics This is NOT a comprehensive list of topics Topics in the exam can be found Weeks 1 to 8
  4. Javier Gonzalez-Sanchez | CSE205 | Fall 2021 | 5 jgs

    Fundamentals Searching and Sorting Arrays of Objects John Mary Alice Robert 4 1 3 2
  5. jgs Javier Gonzalez-Sanchez | SER332 | Spring 2018 | 7

    class Car extends Vehicle{ public Car(String n) { super (n); } } class Vehicle { protected String name; public Vehicle(String n) { name = n; } } super
  6. jgs CSE 205 Object-Oriented Programming and Data Structures Javier Gonzalez-Sanchez,

    Ph.D. [email protected] Fall 2021 Copyright. These slides can only be used as study material for the class CSE205 at Arizona State University. They cannot be distributed or used for another purpose.