CS 211: Object Oriented Programming
George Mason University
Department of Computer Science

Summer 2020
  1. Course Basics

    Instructor:

    Name: Tessema Mengistu (Ph.D.)
    Email: tmengis-at-gmu-dot-edu
    Webpage: https://cs.gmu.edu/~tmengis/courses/SU20/CS211Summer20.html
    Hours: MW 10:30 AM - 12:30 PM or by appointment
    Office:

    Graduate Teaching Assistants:

    Name: Abhishek Roy
    Email: aroy6-at-masonlive-dot-gmu-dot-edu
    Webpage:
    Hours: MT 12:00 - 2:00 PM
    Office:

    Undergraduate Teaching Assistants:

    TBA

    Prerequisites: CS 112 (C or better) and access to a Java-capable computer
    Format: Lecture plus weekly lab
    Lectures:

    SectionDaysTimesLocation
    B01/BP1Tue/Thu10:30AM-1:10PMOnline

    Labs:

    SectionDaysTimesLocation
    CS-211-2B1WF11:30 AM-12:20 PMOnline
    CS-211-2B2WF12:30 PM-1:20 PMOnline

    Textbooks:

    GMUCS 211 Lab Manualavailable for free download from https://cs.gmu.edu/~marks/211/textbook/
    zyBooksProgramming in Javaavailable online at https://learn.zybooks.com/ (subscribe and access using the sign-in code GMUCS211MengistuSummer2020)
    (Optional)Reges and SteppBuilding Java Programs, 3rd ed.see online at https://practiceit.cs.washington.edu/

    Blackboard: Blackboard will be used for all official announcements, course slides, assignments (including submissions), and grades.

    Piazza: Piazza will be used for online discussion; any information discussed on Piazza will be assumed to be known to students.

    • Course schedule, announcements discussion. GTA/UTA contacts and office hours will be on Piazza too.
    • Do not e-mail course staff about programming problems; use the discussion board.
    • Use public posts on Piazza to discuss programming project requirements, labs, and other material related to the course.
    • When prompted by a TA, use private posts on Piazza to share portions of your code pertaining to your questions. Don't share your project code in public posts.
    • Email course staff only for logistical issues such as meeting outside of office hours, missing lab/lecture, grading disputes, medical situations, etc. Email addresses are listed on above and on Piazza.
  2. Course Information

    Course Description: Thorough treatment of programming according to object-oriented principles. Introduces classes, interfaces, inheritance, polymorphism, and single dispatch as means to decompose problems. Covers intermediate programming techniques including error handling through exceptions, arrangement of source code into packages, and simple data structures. Intermediate debugging techniques and unit testing are covered.

    Outcomes

    1. An understanding of basic object-oriented programming concepts and principles
    2. An ability to apply basic object-oriented principles and techniques in the design and development of software systems using a specific programming language.
    3. An ability to effectively use both basic command line tools and sophisticated integrated development environments, and to understand the benefits and limitations of each.
    4. An ability to successfully perform debugging operations and techniques.

  3. Coursework

    zyBooks: online textbook with practice problems; weekly deadlines for completing the practices are checked automatically.
    Labs:

    • Exercise: programming assignment; open resources; collaboration/group work allowed; several days to submit.
    • Quiz: closed resources; individual; online (you need Respondus browser lockdown installed to take quizzes. Please refer here about respodus browser lockdown.)

    Projects: programming assignment; individual work; possibly more than a week to complete.
    Exams: individual work; online (you need Respondus browser lockdown installed to take exams. Please refer here about respodus browser lockdown).

  4. Grading Procedures

    Grade Distribution

    MaterialWeightDrop policy
    zyBooks5%lowest 15 subsections
    Lab Submissions and Quizzes5%
    Exercises (4-5)15%lowest one
    Programming projects (2-3)20%none
    Midterm exam 20%-
    Final exam35%-

    Grading Policies

    • Grades within a category (i.e. midterms, projects, labs) are weighted equally.
    • Students must have Respondus Browser locakdown installed before taking any quiz or exams.
    • By department policy, the student must pass the final or the weighted average of all three exams must be a passing grade (≥ 60) in order for a student to pass the course.
    • The final exam is cumulative; a high final exam score dominates (replaces) lower scores on one or both of the midterms.
    • Challenging of any grade must occur within a week of when the graded assignment has been returned.
    • Any number of resubmissions are allowed (the most recent is used), however a resubmission turned in after the deadline will be considered a late submission.
    • Lab exercise grading is fully automated. Quizzes may be hand-graded. Project grading is partially automated. Even when manually graded, code which does not compile will receive a zero in most cases.
    • Absences are absorbed by the drop policy - in general, make-ups are not allowed except on exams ( under very special circumstances).
    • Assignments are typically due at midnight on the listed due date.
    • Late submission policy (up to 48 hours) is as follows: <=24 hours with 10% off, >24 hours &&<=48 hours with 25% off, > 48 hours will receive 0. Submission times are automatically recorded by Blackboard, and there is no distinction between a minute late and a day late. Please plan ahead to make sure that your submission is on time. Taking backups regularly is highly recommended.

    Grading Scale

    Grade A+AA- B+BB- C+CC- DF
    max 9791 898781 797771 6959
    min 989290 888280 787270 60

    Tips

    • Make backups, because the unexpected happens, and cannot be used as an excuse to get an extension.
    • Submission times are automatically recorded by Blackboard, and there's no distinction between a tiny bit late and nearly a day late - plan ahead to make sure that your submission is on time.
    • To receive a grade, the submission must be gradable. This means submitting .java source rather than compiled .class files or word documents containing the source. It also means that the code must be submitted on Blackboard rather than simply saved.

  5. Honor Code

    Unless specific instructions are given to the contrary, programming assignments are an individual effort, no group work is allowed. In addition to code, this includes the sharing of test cases, pseudocode, or approaches, receiving assistance in debugging code, as well as the use of external Internet sites.

    Both the GMU Honor Code and the CS Department Honor Code apply in this class. Any use of a direct contribution on any program, homework, quiz, or exam will be reported as a violation of the honor code.

  6. Special Accommodations

    Students who have a right to accommodations due to disabilities or other conditions should discuss this with the instructor as soon as possible. Accommodations will follow the recommendations of the University's Office of Disability Services.

  7. Schedule

    WeekDateTopic(s)Lab Text readingzyBooks readingAssignmentsNotes
    week 1Exercise-1, Project-1
    Tue, June 2Introduction; Basics; Flow control1, 21-3
    Thr, June 4Arrays; Input/Output3-54, 5
    Sun, June 71-5 due
    week 2Mon, June 8Exercise-2E1 due
    Tue, June 9Classes; Objects; Methods; Fields66,7
    Thr, June 11Command line args; Packages; Javadocs11, 138
    Sun, June 146-8 dueP1 Due
    week 3Mon, June 15Exercise-3, Project-2E2 due
    Tue, June 16Inheritance; Polymorphism; Dynamic dispatch79,10
    Thr, June 18Abstract classes; Interfaces; Enums8, 911Quiz-1
    Sun, June 219 -11 due
    week 4Mon, June 22E3-due
    Tue, June 23Review
    Thu, June 25Midterm 1
    Sun, June 28
    week 5 Mon, June 29Exercise-4
    Tue, June 30Exceptions; Unit testing10, 1212
    Thr, Jul 01Generics1413
    Sun, Jul 0412-13 dueP2 due
    week 6 Mon, Jul 06Exercise-5, Project-3E4-due
    Tue, Jul 07Collections, Lists & Queues14
    Thr, Jul 09Recursion15, A215Quiz-2
    Sun, Jul 1214-15 due
    week 7 Mon, Jul 13E5 due
    07/14 ,07/16Sort & search1616
    Sun, Jul 19P3 due
    week 8 Tue, Jul 21Review
    examsJul 23 -25