Assignments
Assignment/Exam Links
All assignments/exams will be submitted through Gradescope.
- Homework 1 - TBD
- Homework 2 - TBD
- Homework 3 - TBD
- Homework 4 - TBD
- Midterm Exam - TBD
- Homework 5 - TBD
- Final Exam - TBD
Student Guides
Additional formatting instructions and guides to support HWs
Assignment Breakdown
Assignment | Code (.yaml) | Multiple Choice | Free Response (.pdf) | Collaboration |
---|---|---|---|---|
Homework 1 | β | β | β | β |
Homework 2 | β | β | β | β |
Homework 3 | β | β | β | β |
Homework 4 | β | β | β | β |
Homework 5 | β | β | β | β |
Quiz 1 | β | β | β | β |
Quiz 2 | β | β | β | β |
Quiz 3 | β | β | β | β |
Quiz 4 | β | β | β | β |
Quiz 5 | β | β | β | β |
Quiz 6 | β | β | β | β |
Midterm Exam | β | β | β | β |
Final Exam | β | β | β | β |
- Code (.yaml): Submitted through Gradescope. We will provide you with necessary
.yaml
file templates. - Multiple Choice: Assignments may have a multiple-choice section, completed on Gradescope.
- Free Response (.pdf): Submit a
.pdf
file of your written response to Gradescope for manual grading. - Collaboration: Indicates if collaboration with fellow students is permitted for the assignment.
Homework (100 points)
Autograding Script Formatting Guide
Our autograding platform is designed for reliability and versatility, eliminating dependency on fluctuating external systems and reducing vendor lock-in concerns.
Steps for Submission:
- Download the Assignment File: Weβll provide a
.yaml
file for each assignment. Start by downloading it. - Input Your Answers: Populate the
.yaml
file with your responses, making sure you strictly follow any specific guidelines mentioned. - Formatting Reference: See the example
hw1.yaml
file below to understand the required format. Critical components include the use of the βpipeβ character for multiline strings and proper indentation. Incorrect formatting can result in the autograder misreading your submission. - Text Editor Suggestion: To ensure accurate formatting, paste your code into a text editor or IDE that supports
.yaml
files. - Validate Your File: Before submission, check the syntax with a
.yaml
checker: YAML Checker.
- question: 1
answer: |
SELECT * FROM Student;
- question: 2.1
answer: |
INSERT INTO Student VALUES (6, 'Dimitrov', 'Alex', NULL, NULL);
explanation: A
Additional Formatting Notes:
- For multiple-choice questions, use notations like A or B in the
explanation
field. - Do not modify the βquestionβ sections in the
.yaml
file. - The
.yaml
file will be provided complete with fields corresponding directly to the questions we share with you.
Submitting Your Work:
- Upload your completed
.yaml
file (e.g.,hw1.yaml
) to Gradescope. - We utilize a Docker image to process your submission. Gradescope will grade your work based on our Docker image.
- You can re-submit your assignment multiple times before the deadline, with the exception of midterm and final exams.
Code Style Guide
To encourage good SQL programming style please follow these two simple style rules:
- Give explicit names to all tables referenced in the FROM clause. For instance, instead of writing:
SELECT * from flights, carriers WHERE carrier_id = cid;
Write:
SELECT * from flights AS f, carriers AS c WHERE f.carrier_id = c.cid;
(notice the
AS
) so that it is clear which table you are referring to. - Similarly, reference to all attributes must be qualified by the table name. Instead of writing:
SELECT * FROM flights WHERE fid =Β 1;
Write:
SELECT * FROM flights AS f WHERE f.fid =Β 1;
This will be useful when you write queries involving self joins in later assignments. As well as when you are on the job!
Quizzes (20 points)
Quizzes are 8 questions each, completed through Gradescope, you can see the due dates and release dates ahead of time on Gradescope. They will be worth in total 10% of your grade, so 2% per quiz. But hereβs the plot twist: your lowest grade? Poof! We drop it like itβs hot. π€β¬οΈ πΊπΊπΊ You will have 20 minutes to complete quizzes on Gradescope. Quizzes are pushed to prod after class, and deprecated right before the next class.
Remember, quizzes are to be completed alone, that includes no phoning friends, even if your
BFF
is anLLM
. I understand that students no longer use phones to call, MMS, SMS, or any S. But under academic integrity, phoning also means no tiktoking, no snapping π», no instagramming, notweetingXing, no whatsapping, or any other*ing
. Keep it old school and ace it on your own! π«π±π
Midterm and Final
See the instructions above (under assignments link) for more information on the midterm and final. These will be available shortly before each is available.