Assignments for UCLA Computer Science 35L, Winter 2019

[35L home]

Most assignments are divided into two parts: laboratory exercises and homeworks. Laboratory exercises are expected to be done in the lab session, that is, the week before the assignment is due. You are expected to take lab notes in the form of a log of your actions that contains enough information so that others can reproduce your work.

The last assignment (assignment 10) is special. It is a research and development assignment, where you are expected to do a brief research report and make a presentation to others in the lab. Your instructor will coordinate with you about scheduling your presentations. The material presented is considered to be part of the course and may appear on the final exam, so pay attention to everybody's presentations!

Submit your assignments electronically on CCLE.

You are expected to do your homeworks by yourself. You can share ideas and discuss general principles with others in the class, but all the code and writings that you submit must be your own work; do not share them with others. Please see Grading for more details. Consult a TA or the instructor if you have any questions about this policy.

Typically, labs and homeworks are done on GNU/Linux based systems running on your own computer, either natively or in a virtual machine. In some cases, though, they are done on the SEASnet GNU/Linux servers. In these cases, take care to not run commands like su and sudo that would make it appear to the system administrators that you might be trying to break into the system.

Any programs that you write must behave robustly. Among other things, this means they must avoid arbitrary limits on the length or number of any data structure, including symbols, strings, and line length. It is OK to impose a non-arbitrary limit, e.g., because your computer runs out of memory or because of the limited range of the C ptrdiff_t type, but it is not OK to impose an arbitrary limit, e.g., a limit of at most 255 bytes in a line.

Please stick to coding styles used in the course material rather than inventing your own style, as this saves work for the grader.

Assignments are due by 23:55 on the specified date (i.e., five minutes before midnight at the end of the day).

Assignments 2–9 and their schedule are tentative. Before the week that each of these assignments is to be done, these assignments might change. Any such changes will be noted in the news.

due assignment
2019-01-12 1. Getting to know your system
2019-01-23 2. Shell scripting
2019-02-02 3. Modifying and rewriting software
2019-02-09 4. C programming and debugging
2019-02-16 5. System call programming and debugging
2019-02-23 6. Multithreaded performance
2019-03-02 7. Dynamic linking
2019-03-09 8. SSH setup and use in applications
2019-03-15 9. Change management (No late submissions allowed for this assignment)
2019-03-15 10. Research and development in computing (No late submissions allowed for this assignment.)

Please see the grading policy for how assignments are treated when late.


© 1999, 2003–2019 Paul Eggert. See copying rules.
$Id: assign.html,v 1.116 2019/01/04 01:06:52 eggert Exp $