CSE 114 - Summer 2021 session 1

Introduction to Object-Oriented Programming

http://www.cs.stonybrook.edu/~cse114


Course Description

An introduction to procedural and object-oriented programming methodology. Topics include program structure, conditional and iterative programming, procedures, arrays and records, object classes, encapsulation, information hiding, inheritance, polymorphism, file I/O, and exceptions. Includes required laboratory. This course has been designated as a High Demand/Controlled Access (HD/CA) course. Students registering for HD/CA courses for the first time will have priority to do so. (https://www.cs.stonybrook.edu/students/Undergraduate-Studies/courses/CSE114)

Schedule

Class Number: 65250
Session: Summer I - Z Extended
Instruction Mode: Online Synchronous
Dates: 5/24/2021 - 7/17/2021
SOLAR Class Notes: Summer 2021: Synchronous Online. Course requires three proctored, online examinations on 6/16, 6/30 and 7/14. To take this course, students must have access to a computer with a webcam, microphone and reliable Internet connection.

Prerequisites

Prerequisites: Level 4 or higher on the math placement exam.
Advisory Prerequisite: CSE101 or ISE108.
SBC:     TECH
4 credits


Course Outcomes

The following are the official course goals agreed upon by the faculty for this course:
  • An ability to program in an object oriented language, using concepts such as object classes, encapsulation, inheritance, and polymorphism.
  • An ability to use fundamental data structures such as arrays..
  • An ability to program with sound code structure and use systematic software debugging and testing techniques.

Staff

Instructor: Dr. Paul Fodor
214 New Computer Science Department, Stony Brook University
Office hours: Mondays and Wednesdays 5-6:30PM on Google Meet only: https://meet.google.com/xyu-jhqc-bdx
Phone: 1 (631) 632-9820
Email: paul.fodor@stonybrook.edu


Class Time and Place

  • Lecture: MoWe 9:30AM - 11:30AM, online on Zoom (see Blackboard for link).
  • Laboratory: MoWe 11:45AM - 1:00PM, online on Zoom (same link used by the lecture).

Textbook

Optional: Introduction To Java Programming, Comprehensive Version, Author: Daniel Liang, Publisher: Pearson , Edition: 11th, 2017.


Grading Schema

Grades will be based on homework and exams according to the following formula:
  • Homework assignments -- 15%
  • Labs -- 10%
  • Midterm exams (2) -- 50% (25% each)
  • Final exam -- 25%

The Pass/No Credit (P/NC) option is not available for this course.

This policy applies to all CSE/ISE undergraduate courses used to satisfy the graduation requirements for the major.

Grade Cutoffs

A [95-100], A- [90-95), B+ [87-90), B [83-87), B- [80-83), C+ [77-80), C [73-77), C- [70-73), D+ [65-70), D [60-65), F [0-60)

SPECIAL RULE: If all your grades, including homework assignments, quizzes, recitation and your three exam grades are above the respective class averages, you're guaranteed to receive a grade of C or higher for this class.

There will be extra credit problems as a part of quizzes and homework assignments which values to an increase of less than 4% in the final grade.

The grades will be posted on Blackboard: http://blackboard.stonybrook.edu for privacy reasons.

The final grade you receive in this class will reflect, as far as possible, the extent to which you have mastered the concepts and their applications. How much someone needs a grade, or how close they are to the next higher grade, will have no effect on grade. As the instructor, I want everyone to do well in this course, and will make every reasonable effort to help you understand the material taught. However, the grades provided at the end of the semester are final, except for rare situations involving grading errors. They will not be altered for any reason, so please do not ask me to do so.

Re-grading

For re-grading of an assignment or exam, please meet with the person (instructor or teaching assistant) responsible for the grading. Please arrange a re-evaluation within one week of receiving the graded work. All such requests that are later than one week from the date the graded work is returned to the class will not be entertained. To promote consistency of grading, questions and concerns about grading should be addressed first to the TA and then, if that does not resolve the issue, to the instructor. You are welcome to contact the TA by email or come to his office hour. If you would like to speak with the TA in person, and have a schedule conflict with his office hour, you are welcome to make an appointment to meet the TA at another time.

Examinations:

There will be two cumulative midterm exams and a cumulative final exam. All exams will be closed-book and closed-notes. The exams will be administerred using Respondus LockDown Browser with Monitoring. Do not miss any exams. Make-up exams will be given only in extenuating circumstances (e.g., doctor's note stating that you were ill and unfit to take the exam). Students who miss an exam for a valid reason need to take a make-up exam; specific arrangements will be made on a case-by-case basis.

  • Midterm Exam #1: Wednesday, June 16, 2021, during class time 9:30-11:30am (120 minutes), online with LockDown Browser with Monitoring.
  • Midterm Exam #2: Wednesday, June 30, 2021, during class time 9:30-11:30am (120 minutes), online with LockDown Browser with Monitoring.
  • Final Exam: FINAL EXAM: Wednesday, July 14, 2021, during class time 9:30-11:30am (120 minutes), online with LockDown Browser with Monitoring.

Programming homework assignments

There will be regular programming assignments which must be submitted electronically on Blackboard (http://blackboard.stonybrook.edu) by the announced due date and time. All code must compile. Code that does not compile will not be graded. Assignments will be graded based on program performance and documentation. You may not submit any programming assignment late. Late programming work will not be graded. All program code that is submitted electronically must have the following information listed clearly in documentation (comments in your program code) at the beginning of each file: your name, the course (CSE 160), your section (1), the programming assignment number and the date of the assignment. The assignments are valued different anount of points depending on the difficulty of the programming problems. All assignments problems will be summed up and the percentage of earned points from the total assignment points will be factored in the assignment points in the total points in the grading schema.

Notes on grading programming assignments:

  • Code that does not compile will not receive any credit.
  • Submissions that are no submitted as requested in the assignment (i.e, required program names, file names, method names) will not receive any credit. For example, if the submission requires a Test.java file, any submissions of test.java, test.text, test, etc. will not receive any credit. Similarly, if the requirements say that a method computeBalance with 2 paramenters is required, any submission that defined methods like compute_balance, computer_Balance, different number of parameters, etc. will also not receive any credit. Precision is an essential quality of programs and any mistakes in programming have social, economical, ethical consequences, therefore, learning to be precise is an important skill taught in this class.

Laboratory assignments

You will be given problems that require a programmed solution during lab day. TAs will assign grades of 0 - 3 as follows:

  • 0 - student did not submit lab
  • 1 - student attended lab and attempted to complete it, but it has major problems (doesn't compile or does nothing of value)
  • 2 - student attended lab and when executed, student work is partially complete
  • 3 - student attended lab and all work completed

Tentative Class Schedule

Week Lecture Topics
1 Introduction to Computers, Programming and Java, Elementary Programming, Selections
2 Mathematical Functions, Characters, and Strings, Loops
3 Methods, Arrays
4 Multi-dimensional Arrays
5 Objects and Classes, Object-Oriented Thinking
6 Inheritance and Polymorphism
7 Exception Handling and Text I/O, Abstract Classes and Interfaces
8 Recursion

Communications

Piazza

The Piazza discussion board should be used for all communication with the teaching staff for questions about the course assignments and material. Piazza is a forum for additional learning and assistance. The following are not appropriate uses of Piazza:

  • cyber-bullying
  • posting memes
  • complaining about a grade
  • airing concerns/comments/criticisms about the course
  • posting more than a few lines of source code from an attempt at a homework problem
  • posting the solution to a homework problem or a link to a website containing the solution
  • in general, anything unrelated to the course material and student learning

Therefore, you are expected to use the Piazza forum for all non-personal, course-related communication. Questions about what a homework problem is asking, technical problems that need troubleshooting, or other questions that might be of interest to other students must be posted to Piazza and not emailed to the instructor or a TA. If Piazza is used inappropriately it will be closed/removed for you. We will not tolerate cyber-bullying. Anonymous posting is turned off, so we can see who you are. Improper conduct will be reported to the Dean of Students Office.

Email Etiquette

If you have a private matter to discuss, when emailing your instructor about the course, use the following guidelines to ensure a timely response:

  • use your official @stonybrook.edu email account (we cannot respond to an other email due to FERPA regulations)
  • use a descriptive subject line that includes "CSE160: " and a brief note on the topic
  • begin with a proper greeting, such as "Hi Prof. Fodor"
  • briefly explain your question or concern or request including the course (we are teaching several courses)
  • end with a proper closing that includes your full name, Net ID and SBU ID number

Student Accessibility Support Center Statement:

If you have a physical, psychological, medical or learning disability that may impact your course work, please contact Student Accessibility Support Center, ECC (Educational Communications Center) Building, Room 128, (631)632-6748. They will determine with you what accommodations, if any, are necessary and appropriate. All information and documentation is confidential.

Students who require assistance during emergency evacuation are encouraged to discuss their needs with their professors and Student Accessibility Support Center. For procedures and information go to the following website:http://www.stonybrook.edu/ehs/fire/disabilities.


Academic Integrity Statement:

Each student must pursue his or her academic goals honestly and be personally accountable for all submitted work. Representing another person's work as your own is always wrong. Faculty is required to report any suspected instances of academic dishonesty to the Academic Judiciary. Faculty in the Health Sciences Center (School of Health Technology & Management, Nursing, Social Welfare, Dental Medicine) and School of Medicine are required to follow their school-specific procedures. For more comprehensive information on academic integrity, including categories of academic dishonesty please refer to the academic judiciary website athttp://www.stonybrook.edu/commcms/academic_integrity/index.html

Critical Incident Management Statement:

Stony Brook University expects students to respect the rights, privileges, and property of other people. Faculty are required to report to the Office of University Community Standards any disruptive behavior that interrupts their ability to teach, compromises the safety of the learning environment, or inhibits students' ability to learn. Faculty in the HSC Schools and the School of Medicine are required to follow their school-specific procedures. Further information about most academic matters can be found in the Undergraduate Bulletin, the Undergraduate Class Schedule, and the Faculty-Employee Handbook.

Page maintained by Paul Fodor