Try   HackMD

CS0111 - Spring 2025: Final Exam Prep Guide

Our final will be on Wednesday, May 14 2pm - 5pm.

  • Salomon DECI
  • Students with SAS accommodations: 2pm onward, location TBA

The exam is going to check your conceptual understanding of material from across the course, with emphasis on the material from lists onward, including organization and updating data. We want to check whether you can frame data-facing questions at a high level, choose between the shapes of data for a problem, and design and test programs that change data.

What should you expect?

  • The exam will be entirely on paper. You may not use a computer (or phone or any other electronic device, etc) during the exam.

  • The exam will be designed to take an average of about 90 minutes (but you have three hours). That should give enough time for everyone to finish.

  • The exam will be self-contained. You will not be asked to remember any specific scenario from lecture, homework, projects, or labs.

  • You will not be expected to write much code on the exam.

    • You may be asked to fill in fragments of code (along the lines of what you've done on the drills)
    • You might need to write a dataclass or Pyret-style datatype definition
    • You might be asked to write assertions/short test expressions
  • If a question involves code, it will be presented in whichever of Python or Pyret we used when we learned the corresponding concept in the course. The question will clearly say if you are expected to be using Python or Pyret. The majority of questions will use Python, unless the concepts for that question are more clearly stated in Pyret.

  • You will not be tested or graded on details of syntax. For example, if we ask you to write a Python for-loop and you forget the colon at the end of the first line, that's fine. For the exam, we care about your understanding of the concepts. As long as your code is close enough to convey that you know how to approach the problem, that's fine.

    There are some syntactic details that we do care about, because they convey understanding of how code executes:

    • Using reasonable indentation (such as indenting the code to execute when a conditional statement is true) is important because it indicates what code gets executed when
    • Using the correct operators to access "pieces" of data (my_list[0] for a list, my_dict["key"] for a dictionary, my_data.my_field for a datatype, etc.) is important because it indicates an understanding of the data structures and, for more complex expressions, how code executes. For example, if data_list is a list whose elements are datatypes with a field name, we would expect you to write data_list[0].name to access the name of the first item in a list (as opposed to data_list.name[0], data_list[0][name], etc.)
  • The questions will mostly be open-ended rather than multiple choice. You might be asked to draw something, fill in blanks, circle relevant pieces of code, and so on.

What can/should you bring?

  • Your Brown ID (we will check them as you turn in your exam)
  • Something to write with (two colors would be helpful)
  • One sheet of paper (8.5 x 11) with notes of your choosing. You may have notes on both sides. You may not share notes with others during the exam, but you are welcome to work with others to prepare your study sheets. The sample exams (see below) might help you figure out what notes you want to bring.

Your notes sheet must be on paper, not on your phone or computer, etc. You are free to use a computer to type up your note sheet, but what you bring to the exam must be printed out on a physical piece of lpaper.

We will provide scrap paper.

No headphones or earbuds during the exam.

What you are expected to know

The exam will cover content up through lecture on 4/18. The last two lectures are not covered.

Programming

  • Which programming constructs are appropriate for different situations: when should you use each of conditionals, (helper) functions, recursion, for-loops, and variable updates?

  • How programs evaluate to answers, both in terms of the answers, and at the level of the program directory and memory diagrams.

  • What each of map, filter, and sort would achieve on a list

  • How data would change in memory based on updates to variables and pieces of dataclasses, dictionaries, etc.

Data structures

  • When are each of tables, lists, trees, dataclasses, and dictionaries a good choice for capturing information. (For purposes of the exam, we will consider Pyret tables and Pandas DataFrames to be the same data structure.)

  • How to use a combination of tables, lists, trees, dataclasses, and dictionaries to manage the data for a problem.

  • How to define a Pyret datatype or Python dataclass to capture specific information for a problem.

Testing

  • How to test functions that return results

  • How to test functions that update data, but may or may not return anything

What you are NOT expected to know

This list may grow as people ask clarifying questions about the exam

  • Fine-grained details of language syntax
  • The specific names of table operations on Pyret tables or pandas dataframes (but you should know which kinds of operations are available)
  • Operations that produce plots and charts
  • Reading input from or writing output to files
  • Reactors or the various components needed to write a simulation or game in Pyret
  • Details for using the built-in sort operations in either Pyret or Python
  • Computing runtime or machine learning (last two lectures)

What kinds of problems might you get?

  • Given a program, what will its output be when executed?

  • Given a scenario, what data structures would you use to capture the data? Answers should indicate both the datatype (list, dictionary, tree, etc) and the types of the parts (list elements, dictionary keys and values, etc).

  • Given a partially-written program with blanks, how do you fill in the blanks to achieve a certain behavior or result?

  • Given a program, what might the program directory and heap look like at a specific point in the execution?

  • Given a problem, what would be some good tests for it?

  • Given a program that is producing the wrong answer, identify and correct the error.

  • Given two proposed data organizations/data structures for a specific problem, contrast their strengths and weaknesses.

Note that these are the same kinds of questions you've done across homeworks, labs, drills, and quizzes.

How To Prepare?

Milda will hold some office hours late reading period/early exam period where you can ask questions about and review your work on these problems. You also have the following resources:

  • A folder in Canvas with the exams from some of the past offerings of the course. All of the final exams were in-person and timed for 3 hours.
  • The separate Gradescope that you used to prepare for the quiz still has last semester's quiz, questions from previous quizzes, and the past drills from this semester (in case you missed them). Note that nothing you turn in in this separate Gradescope will count towards your grade.
  • This past lecture from fall 2024 talks through some design decisions we might make with more complicated data structures (the spring semester has 1-2 fewer lectures than fall, due to holidays, so we didn't have this lecture in the spring). While this is optional viewing and talks about a more complex problem than what would fit on an exam, watching this lecture can help you reinforce your understanding of lists, datatypes, and dictionaries.
  • This review session from spring 2024, which goes through some past exam questions.