Closed-book, closed-note, and using Canvas.
Review
Bring your textbook to the review!
These are sample questions; some may be on the exam, but the exam question
is likely to be worded differently and there will be questions on other
material as well. Use these to make
sure you are familiar with each of the topics, to get practice thinking
about the sorts of questions you will see, and to make sure you know
the technical terminology.
General approach:
- know material, terminology; be ready to apply it
- ensure you are telling me all that's relevant
- be cautious of using the terms in the question in your answer
(especially for definitions!)
- think in terms of answering in sentences
- If a question asks for a reason, you might ask your self "why?" a couple
times to make sure you really do give a reason or otherwise go beyond
what's written in the question itself.
- Good answers typically uses terminology that you were taught in a
prerequisite course or this course. If the term is in this course,
think about whether you need to define the term. Generally, try to
answer how you might if you were at a technical interview for a job in
computing.
Topics
The exam will cover all of the material since the beginning of the
term. Ask if you are not quite sure what material that includes! Some key
things to know:
- The waterfall model and where design fits into software processes.
- Rational for studying design patterns and how they are communicated.
- How to apply the noun identification method to construct domain class
diagrams.
- The RIBS criteria for classes: you should be able to identify each in
good domain classes.
- How to describe coupling and cohesion (in general) and their specific
types such as "common coupling" and "functional cohesion".
- UML notation, especially for class diagrams; practice drawing the
notation! Know sequence diagrams to the depth covered in class.
- Design patterns, including
- names, indicators, advantages of using, disadvantages
- constructing class and sequence diagrams showing the application of
a design pattern to a problem
- writing code illustrating applying the pattern
Don't try to memorize diagrams and code; you will remember just pieces of
it and fail to apply key concepts. Understand how the pattern works and
you can apply it in new domains.
- When to use an abstract class and when to use an interface (in Java).
- General design principles such as don't repeat
yourself, program to interfaces, not implementations,
the open-closed principle (extend, don't modify), and preferring
composition to inheritance
- Other technical terms discussed in lecture and the textbook(s).
This is
not a comprehensive list. But these items tend to
show up on quizzes and exams, so provide a solid starting point. Do read
the textbook: it gives important context that helps you remember key
concepts and explanations.
Review Questions
- What are advantages of object-oriented designs over non-OO designs
(that is, procedural designs: collections of steps)?
- What would you tell a student in Data Structures to encourage them to
prioritize domain classes in their designs?
- In this course we talk about the importance of designing a solution
before starting to write code. Does this mean you should completely
specify every element of the software before writing code? Explain why.
- Give three or more examples of classes that would appear in a solution
space but not a problem space.
- What are the goals of the noun (and verb) identification method for
systems design?
- Name 3 things that fail to have identity.
- Consider a registration system: what would be good responsibilities for
- Class, Section, Schedule, Room,
Student, Instructor, Professor
- Draw a class diagram showing the relationships between these (and
any other obvious classes).
- How would advisors be handled in this system?
- Suppose a design includes a class called Main that captures
the main in a program along with other stuff. Explain how this
class violates the RIBS criteria in multiple ways.
- Explain how a high-level class diagram (covering just domain classes)
is useful in system design.
- Explain a possible reason behind the name of the worst type of
coupling, "content coupling". That is, explain the use of "content" in
that context.
- What type of cohesion does a Java program exhibit if it has just one
class,
Main
? Explain.
- What is the difference between temporal cohesion and procedural
cohesion?
- Why do you suppose the highest form of cohesion is termed
"functional"?
- How would you describe the design pattern for a classroom? What would
be the features? What would be reasons to not apply this pattern?
- Identify how the Decorator pattern could be applied to a classroom in
a software system, describe that system, and draw a diagram showing the
application. Which classes need to be abstract or interfaces?
- Give significant differences between the Strategy and Decorator
patterns (so that a programmer could decide which to use).
- Why would it be important that the Observer Pattern be based on
observing events?
- Give rules for when to apply Strategy, Decorator, and Observer