Format of Tests in COP 3330
Format of tests may contain any of these three main types of problems
- short answer -- multiple choice, true/false,
fill-in-the-blank, short free response questions
- Code-Reading -- problems involving reading a segment of code and
answering some questions about it. A few example types of questions:
- Show the output of a segment of code
- Look at a function definition, then specify the return from a given call
- Specify whether certain calls or other lines of code are legal or illegal (for compilation)
- Code-writing -- problems involving writing small segments of code,
like short algorithms or functions
- Code-writing questions are typically written to reflect the kinds of things you've been practicing in assignments
- In this course, that means writing parts of classes! (member function definitions, for example)