Syllabus
- Expectations
- Objectives
- Grades
- Books
- Lectures
- Supersections
- Sections
- Office Hours
- Problem Sets
- Quizzes
- Test
- Tracks
- Final Project
- October Recess
- CS50 Hackathon
- CS50 Fair
- Financial Aid
- Academic Honesty
- Acknowledgement and Authorization
Introduction to the intellectual enterprises of computer science and to the art of programming. Students learn how to think algorithmically and solve problems efficiently. Topics include abstraction, algorithms, data structures, encapsulation, resource management, security, software engineering, web development, and artificial intelligence. Languages include C, Python, SQL, and JavaScript, plus CSS and HTML. Problem sets inspired by real-world domains of biology, cryptography, finance, forensics, and gaming. See CS50ās website, cs50.yale.edu, for additional information.
No previous programming experience required. Open to students of all levels and majors.
CS50 will meet at Yale on Thu 8/29 and Thu 9/5 from 4pm until 5:15pm in Sheffield-Sterling-Strathcona Hall (SSS) Room 114. Students are expected to attend both lectures unless you have a time conflict. If you are unable to attend these lectures, you will be able to watch the recordings on the course web site. All subsequent lectures will be recorded at Harvard on Monday morning; you may watch the live stream on this web site or the recording later in the day. While most sections will be held throughout the day on Tuesday, we will hold a few sections Monday nights and Wednesday mornings. We will provide instructions for sign-up sections once the semester starts (you will not sign up through the registrar).
Expectations
You are expected to
- watch all lectures (before your section starts),
- attend eight regular sections,
- solve nine problem sets,
- take seven quizzes,
- take one test,
- select a specialization track, and
- design and implement a final project.
Objectives
Educational Objectives
Among the overarching goals of this course, independent of its curriculum, are to
- inspire students to explore unfamiliar waters, without fear of failure;
- create an intensive, shared experience, accessible to all students; and
- build community among students.
Learning Objectives
Among the overarching goals for students individually in this course is that they learn something that we havenāt taught them, as is manifest at termās end by so many studentsā final projects that use languages, libraries, tools, and techniques not taught in the course. Along the way will students learn to
- think more methodically;
- program procedurally;
- represent and process information;
- communicate succinctly and precisely;
- solve problems efficiently;
- recognize patterns among problems;
- decompose problems into parts and compose solutions thereto;
- operate at multiple levels of abstraction;
- separate design from implementation details;
- infer from first principles how systems work;
- assess the correctness, design, and style of code;
- teach themselves new languages;
- identify threats to privacy and security;
- read documentation, drawing conclusions from specifications;
- test solutions to problems, find faults, and identify corner cases;
- describe symptoms of problems precisely and ask questions clearly; and
- identify and quantify tradeoffs among resources, particularly time and space.
Ultimately, the course provides students with a foundation for further studies in computer science and empowers students to apply computer science to problems in other domains.
Curricular Objectives
Week 0 # Scratch
- Problem solving
- Inputs, Outputs
- Representation
- Unary, Binary, Decimal
- Abstraction
- ASCII, Unicode
- RGB
- Algorithms
- Running Time
- Pseudocode
- Scratch
- Functions, Arguments, Return Values
- Variables
- Boolean Expressions, Conditions
- Loops
- Events
- Threads
Week 1 # C
- Linux
- Command-Line Interface
- C
- Functions, Arguments, Return Values
- Variables
- Boolean Expressions, Conditions
- Loops
- Libraries, Header Files
- Text Editors
- Terminal Windows
- Compiler
- Types
- Integer Overflow
- Floating-Point Imprecision
Week 2 # Arrays
- Preprocessing
- Compiling
- Assembling
- Linking
- Debugging
- Arrays
- Strings
- Command-Line Arguments
- Cryptography
Week 3 # Algorithms
- Searching
- Linear Search
- Binary Search
- Sorting
- Bubble Sort
- Selection Sort
- Insertion Sort
- Merge Sort
- Asymptotic Notation
- O
- Ī©
- Ę
- Recursion
Week 4 # Memory
- Pointers
- Segmentation Faults
- Dynamic Memory Allocation
- Stack
- Heap
- Buffer Overflow
- Data Structures
- File I/O
- Images
Week 5 # Data Structures
- Linked Lists
- Trees, Binary Search Trees
- Hash Tables
- Tries
- Abstract Data Types
- Stacks, Queues
Week 6 # Python
- Python
- Functions, Arguments, Return Values
- Variables
- Boolean Expressions, Conditions
- Loops
- Modules, Packages
Week 7 # SQL
- SQL
- Tables
- Types
- Statements
- Constraints
- Indexes
- Keywords, Functions
- Transactions
- Race Conditions
- SQL Injection Attacks
Grades
You are encouraged to take CS50 Credit/D/Fail if you will feel less nervous without the pressure of a letter grade. Note it will only satisfy the QR requirement if you take it for a grade. Please also remember that your course grade will reflect how much you progress over the semester. We expect you to work hard and learn a lot, and your course grades will reflect that. Course grades tend to be quite high in CS50.
Whether taking the course Credit/D/Fail or for a letter grade, you must ordinarily submit all problem sets, brief pre-section quizzes, one exam, and submit a final project unless granted an exception in writing by the courseās heads. Multiple missing problem sets, a missing quiz or final project, and violations of the academic honesty policy may each result in a reduced or failing grade.
Graduate and professional students are expected to produce a final project that is 50% greater in scope than what is expected of undergraduate students. Your course grade will be adapted to the prevailing standards of your school, but we encourage you to take the class Pass/Fail if your degree program permits it.
Auditors are welcome in CS50. Graduate students, employees, and their family members who formally register as auditors may also participate in all aspects of the class including section, office hours, and receiving graded feedback on your problem sets. We do not require or expect you to complete all the coursework like a regular student, and we will not worry if you choose not to. However, we will not be able to help you individually catch up or grade late submissions if you have not been fully participating in the class.
Final grades are determined using the following weights:
| Problem Sets | 50% |
| Quizzes | 10% |
| Test | 20% |
| Final Project | 10% |
| Attendance* | 10% |
* At sections.
Problem sets and the final project are evaluated along axes of correctness and style, with correctness ordinarily counting for 75% of your score and style counting for 25%. Scores are normalized across teaching fellows and comfort levels at termās end, so mid-semester comparisons among students of scores are not reliable indicators of standing.
Know that CS50 draws quite the spectrum of students, including āthose less comfortable,ā āthose more comfortable,ā and those somewhere in between. However, what ultimately matters in this course is not so much where you end up relative to your classmates but where you end up relative to yourself at the start.
Each studentās final grade is individually determined at termās end. Remarkable effort and upward trending are considered, as is input from the teaching fellows. The course does not have pre-determined cutoffs for final grades. The course is not graded on a curve. Those less comfortable and somewhere in between are not at a disadvantage vis-Ć -vis those more comfortable.
Books
No books are required or recommended for this course. However, you might find the below books of interest. Realize that free, if not superior, resources can be found on the courseās website.
Hackerās Delight, Second Edition
Henry S. Warren Jr.
Pearson Education, 2013
ISBN 0-321-84268-5
How Computers Work, Tenth Edition
Ron White
Que Publishing, 2014
ISBN 0-7897-4984-X
Programming in C, Fourth Edition
Stephen G. Kochan
Pearson Education, 2015
ISBN 0-321-77641-0
Lectures
CS50 will hold lectures at Yale on Thursday 8/29 and Thursday 9/5 from 4-5:15pm in Sheffield-Sterling-Strathcona Hall (SSS) Room 114. Most other lectures are live-streamed from Harvard on Monday afternoons, though youāre welcome to watch on demand later in the day, and return to them at any later time.
| # | Lecture | Date |
|---|---|---|
| 0 | Computational Thinking, Scratch | Thu 8/29, 3pmā4:15pm |
| 1 | C | Mon 9/9, 3pmā5pm |
| 2 | Arrays | Mon 9/16, 3pmā5pm |
| 3 | Algorithms | Mon 9/23, 3pmā5pm |
| 4 | Memory | Mon 9/30, 3pmā5pm |
| 5 | Data Structures | Mon 10/7, 3pmā5pm |
| 6 | Python | Mon 10/21, 3pmā5pm |
| 7 | SQL | Mon 10/28, 3pmā5pm |
| 8 | Information | Fri 11/1, 10:30amā11:45am |
| 9 | Studentsā Choice | Fri 11/8, 11:59pm ET |
The courseās final lectures will depend on your choice of tracks.
Supersections
Supersections are optional Zoom-based opportunities after each lecture to review the dayās material and ask additional questions.
Supersections will begin in Week 1.
Sections
Lectures are supplemented by weekly sections led by the teaching assistants. Different sections are offered for less-comfortable and more-comfortable students. We will provide instructions early in the semester for section sign-up; you will not sign up through the registrar or preference selection because we need to account for the different comfort levels and for graduate students who do not have access to preference selection.
Attendance at section is required.
Sections will be assigned in Week 1. Sections will begin in Week 2 and will end in Week 11.
Office Hours
Office hours are opportunities for help with problem sets alongside the courseās teaching assistants and course assistants.
A schedule of office hours will appear on the courseās website after shopping period.
Each week, the instructors will offer additional time to discuss any and all of studentsā questions, comments, and concerns about the course or computer science more generally. These dates and times will appear on the aforementioned schedule.
Problem Sets
Problem sets are typically assigned weekly until Thanksgiving break. After Thanksgiving you will be working on your final project. Late work is not ordinarily accepted, except with a Deanās excuse. (Graduate students should e-mail heads@cs50.yale.edu as early as possible to request an extension.)
| # | Language | Deadline |
|---|---|---|
| 0 | Scratch | Sun 9/8, 11:59pm |
| 1 | C | Sun 9/15, 11:59pm |
| 2 | C | Sun 9/22, 11:59pm |
| 3 | C | Sun 9/29, 11:59pm |
| 4 | C | Mon 10/7, 11:59pm |
| 5 | C | Sun 10/13, 11:59pm |
| 6 | Python | Sun 10/27, 11:59pm |
| 7 | SQL | Sun 11/3, 11:59pm |
| 8 | Studentsā Choice | Fri 11/22, 11:59pm |
The courseās final problem set will depend on your choice of tracks.
Quizzes
Quizzes are short assignments due after each lecture that allow you to apply each weekās concepts to new problems. Each quiz is open-book: you may use any and all non-human resources during a quiz, but the only humans to whom you may turn for help or from whom you may receive help are the courseās heads. Your 5 highest quiz scores will be counted towards your final grade. All quizzes are due before your section starts or Tuesday at 11:59pm, whichever comes first!
| # | Deadline |
|---|---|
| 1 | Tue 9/10, 11:59pm |
| 2 | Tue 9/17, 11:59pm |
| 3 | Tue 9/24, 11:59pm |
| 4 | Tue 10/1, 11:59pm |
| 5 | Tue 10/8, 11:59pm |
| 6 | Tue 10/22, 11:59pm |
| 7 | Tue 10/29, 11:59pm |
Test
The test is opportunity to synthesize concepts across weeks and solve new problems based on lessons learned. The test is open-book: you may use any and all non-human resources during the test, but the only humans to whom you may turn for help or from whom you may receive help are the courseās heads.
| Release | Deadline |
|---|---|
| Mon 11/4, 7:30pm | Fri 11/8, 11:59pm |
Tracks
The courseās final two weeks offer you a choice of lectures and problem sets:
- web programming with HTML, CSS, and JavaScript (plus Python and SQL);
- mobile app development for iOS with Swift or Android with Java; or
- game development with Lua.
So that the tracks can happen in parallel, the lectures will be pre-recorded on video. You are encouraged, but not required, to select a track that might best prepare you for your choice of final projects.
Final Project
The climax of this course is its final project. The final project is your opportunity to take your newfound savvy with programming out for a spin and develop your very own piece of software. So long as your project draws upon this courseās lessons, the nature of your project is entirely up to you, albeit subject to the staffās approval. You may implement your project in any language(s) as long as the staff approves. You are welcome to utilize any infrastructure, provided the staff ultimately has access to any hardware and software that your project requires. All that we ask is that you build something of interest to you, that you solve an actual problem, that you impact campus, or that you change the world! Strive to create something that outlives this course.
Inasmuch as software development is rarely a one-person effort, you are allowed an opportunity to collaborate with one or two classmates for this final project. Needless to say, it is expected that every student in any such group contribute equally to the design and implementation of that groupās project. Moreover, it is expected that the scope of a two- or three-person groupās project be, respectively, twice or thrice that of a typical one-person project. A one-person project, mind you, should entail more time and effort than is required by each of the courseās problem sets. Although no more than three students may design and implement a given project, you are welcome to solicit advice from others, so long as you respect the courseās policy on academic honesty.
Extensions on the final project always require a Deanās excuse (graduate students must provide documentation of a genuine emergency). Late submissions will receive no credit.
| Milestone | Date |
|---|---|
| Pre-Proposal | Sun 11/10, 11:59pm |
| Proposal | Sun 11/17, 11:59pm |
| Status Report | Mon 12/2, 11:59pm |
| Implementation | Wed 12/11, 11:59pm |
October Recess
There will be no lecture, supersection, section, quiz, problem set, or office hours from Mon 10/14 through Sun 10/20.
CS50 Hackathon
From 7pm on Tue 12/3 until 7am on Wed 12/4 is the CS50 Hackathon, an epic all-nighter at Harvard during which you can dive into your final projectās implementation alongside classmates (from Yale and Harvard alike!) and staff. If you choose to partake, youāll be asked to propose three milestones for yourself that evening: a āgoodā one that you intend to achieve no matter what; a ābetterā one that you think you can achieve; and a ābestā one that you hope to achieve.
Dinner will be served around 9pm, second dinner will be served around 1am, and those still awake around 5am will be treated to breakfast at IHOP.
Transportation to and from Harvard will be provided.
CS50 Fair
From 1pm until 3pm on Thu 12/12 at Yale on York is the CS50 Fair, an epic display of final projects. Not only is the CS50 Fair a venue at which to see classmatesā projects and demo your own, it is an opportunity to mingle with students, faculty, and staff from across campus as well as recruiters from industry. Attendance is expected of all students.
Also in attendance are refreshments and a raffle with (fabulous) prizes. Family and friends are welcome to join.
Financial Aid
CS50 does not require that students purchase any books, hardware, or software. While not required, having oneās own laptop (and webcam, if not built-in) is helpful, particularly for office hours. Students without their own laptops (or with a laptop without webcam) are encouraged to reach out at termās start to the courseās instructor and/or college dean to discuss possibilities.
Academic Honesty
This courseās philosophy on academic honesty is best stated as ābe reasonable.ā The course recognizes that interactions with classmates and others can facilitate mastery of the courseās material. However, there remains a line between enlisting the help of another and submitting the work of another. This policy characterizes both sides of that line.
The essence of all work that you submit to this course must be your own and you must explicitly cite anyone you collaborate with and any resources you use that are not part of the course material or directly linked from the pset instructions.
- You may ask classmates and others for help on psets, and you may use outside resources that do not reduce to another doing your work for you. You must include comments in your code with the full name of the person you discussed with (āJohn Q. Adamsā is good, āmy roommate,ā āmy tutor,ā or āNatalieā is not), or the complete URL or reference for the outside resource; what you discussed, and how that helped you. This is partly a note-taking process and partly a matter of properly citing sources.
- You must also cite any help or discussions you have with other students in the class. If the pset doesnāt explicitly include a place for this, do so in comments in the most related section of your own code.
- Generally speaking, when asking for help, you may show your code to others, but you may not view theirs. You may not post your code online, and you may not look at or use online solutions to the psets.
- Collaboration on the courseās quiz is not permitted at all. Collaboration on the courseās final project is permitted to the extent prescribed by its specification.
Regret clause. If you commit some act that is not reasonable but bring it to the attention of the courseās heads within 72 hours, the course may impose local sanctions that may include an unsatisfactory or failing grade for work submitted, but the course will not refer the matter for further disciplinary action unless another infraction occurs. You may invoke this clause only once for a true infraction, but if you self-report something that the course heads feel is not a significant violation, it will not count against you or count as your one invocation.
In cases of suspected violations involving students at both Harvard and Yale, students will be referred to the appropriate committee at their university. Those committees may exchange information for the purpose of resolving the cases in accordance with their own procedures. They may also reach different conclusions and impose different sanctions from the same set of facts and evidence.
Below are rules of thumb that (inexhaustively) characterize acts that the course considers reasonable and not reasonable. If in doubt as to whether some act is reasonable, do not commit it until you solicit and receive approval in writing from the courseās heads. Acts considered not reasonable by the course are handled harshly. If the course refers some matter for disciplinary action and the outcome is punitive, the course reserves the right to impose local sanctions on top of that outcome that may include an unsatisfactory or failing grade for work submitted or for the course itself.
Reasonable
- Communicating with classmates about problem setsā problems in English (or some other spoken language), and properly citing those discussions.
- Discussing the courseās material with others in order to understand it better. You do not need to cite this if it isnāt related to the pset, but we encourage citing and note-taking on your discussion anyway.
- Helping a classmate identify a bug in his or her code at office hours, elsewhere, or even online, as by viewing, compiling, or running his or her code after you have submitted that portion of the pset yourself. Add a citation to your own code of the help you provided and resubmit.
- Incorporating a few lines of code that you find online or elsewhere into your own code, provided that those lines are not themselves solutions to assigned problems and that you cite the linesā origins.
- Reviewing past semestersā tests and quizzes and solutions thereto.
- Sending or showing code that youāve written to someone, possibly a classmate, so that he or she might help you identify and fix a bug, provided you properly cite the help. If it is a classmate, make sure they cite giving the help as well.
- Submitting the same or similar work to this course that you have submitted previously to this course, CS50 AP, or CS50x. Please include a comment at the top of the file indicating it is a resubmission to eliminate any potential confusion.
- Turning to the courseās heads for help or receiving help from the courseās heads during the quiz.
- Turning to the web or elsewhere for instruction beyond the courseās own, for references, and for solutions to technical difficulties, but not for outright solutions to problem setās problems or your own final project. Cite any such resources, especially if they are related to a pset.
- Whiteboarding solutions to problem sets with others using diagrams or pseudocode but not actual code. Cite who you discussed with and what you discussed, even if you are doing this in office hours under TA supervision. It helps avoid misunderstandings down the road.
- Working with (and even paying) a tutor to help you with the course, provided the tutor does not do your work for you and you cite the pset help you receive.
Not Reasonable
- Accessing a solution to some problem prior to (re-)submitting your own.
- Accessing or attempting to access, without permission, an account not your own.
- Asking a classmate to see his or her solution to a problem setās problem before (re-)submitting your own.
- Decompiling, deobfuscating, or disassembling the staffās solutions to problem sets.
- Discovering but failing to disclose to the courseās heads bugs in the courseās software that affect scores.
- Failing to cite (as with comments) the origins of code or techniques that you discover outside of the courseās own lessons and integrate into your own work, even while respecting this policyās other constraints.
- Giving or showing to a classmate a solution to a problem setās problem when it is he or she, and not you, who is struggling to solve it.
- Looking at another individualās work during the quiz.
- Manipulating or attempting to manipulate scores artificially, as by exploiting bugs or formulas in the courseās software.
- Paying or offering to pay an individual for work that you may submit as (part of) your own.
- Providing or making available solutions to problem sets to individuals who might take this course in the future.
- Searching for or soliciting outright solutions to problem sets online or elsewhere.
- Splitting a problem setās workload with another individual and combining your work.
- Submitting (after possibly modifying) the work of another individual beyond the few lines allowed herein.
- Submitting the same or similar work to this course that you have submitted or will submit to another.
- Submitting work to this course that you intend to use outside of the course (e.g., for a job) without prior approval from the courseās heads.
- Turning to humans (besides the courseās heads) for help or receiving help from humans (besides the courseās heads) during the quiz.
- Viewing anotherās solution to a problem setās problem and basing your own solution on it.
Acknowledgement and Authorization
Harvard plans to record audio, photos, and video of Computer Science 50 (CS50) lectures, sections, office hours, seminars, and other events and activities related to CS50 (the āRecordingsā), with the aims of making the content of the course more widely available and contributing to public understanding of innovative learning (the āProjectsā). The Recordings, or edited versions of them, may be made available to other Harvard students, to students at other educational institutions, and to the broader public via edX, the Internet, television, theatrical distribution, digital media, or other means. It is also possible that the Recordings may be used to make other derivative works in the future. Students may elect not to appear in photos and video used in the Projects and may still participate fully in CS50.
When you submit Problem Set 0, you will need to sign online an Acknowledgement and Authorization in the following form:
I understand that, if I do not wish any photos or video of me to be used as part of the Projects, I should so inform the courseās instructor by emailing recordings@cs50.harvard.edu within one week of enrolling in CS50. In that event, I understand that I should sit in the designated āno-filmā zone of CS50 classrooms and should not walk in the field of view of the cameras. I understand that Harvard will take reasonable steps, with my cooperation, to avoid including identifiable images of me in the Projectsā photos and video shot in classrooms and other course locations after I opt out as just described. I understand that I am free to opt out of the Projectsā photos and video in this way, and that doing so will not affect my grade or my ability to participate in course activities.
Unless I opt out of the Projectsā photos and video as described above and take the steps that will be outlined by the instructor to avoid being filmed, I authorize Harvard and its designees to record and use photos and video of my participation in CS50 and activities related to CS50 (the āRecordingsā). I understand and agree that the Recordings may include my image, name, and voice. I also understand and agree that, even if I opt out of the Projectsā photos and video, my spoken name and voice may be picked up by microphones outside the āno-filmā zone and may be included in the Recordings.
I understand and agree that Harvard and its designees will have the irrevocable, worldwide right to make, edit, modify, copy, publish, transmit, distribute, sell, publicly display, publicly perform, and otherwise use and make available its respective Recordings and any other works that may be derived from those Recordings, in any manner or medium now known or later invented, and to authorize others to do so as well. I hereby transfer to Harvard any rights, including copyrights, I may have in the Recordings that Harvard makes. I will remain free to use and disseminate any ideas, remarks, or other material that I may contribute to course discussions.
I acknowledge and agree that I will not be entitled to any payment, now or in the future, in connection with the Recordings or any works derived from them. This Acknowledgment and Authorization is a binding agreement, and is signed as a document under seal governed by the laws of the Commonwealth of Massachusetts.
Unless you opt out as described in the Acknowledgment and Authorization, you are agreeing, by attending CS50, that your participation in CS50 and related activities may be recorded and used by Harvard in connection with the Projects without further obligation or liability to you, even if you do not sign any authorization.
If you have any questions about the above, contact recordings@cs50.harvard.edu.