Affinity Diagram | Glossary

Definition:

Affinity Diagram is a powerful tool to organise information. A tool that gathers ideas, opinions, issues and organised them into groups or themes based on their natural relationships.

The term affinity diagram was devised by Jiro Kawakita in 1960 and also referred as KJ Method. During brainstroming session, this tool allows large number of ideas generated and sorted to make some sense for review and analysis to bring insights. The process to develop this is to record each ideas on cards or notes, cluster ideas that seems to be related and  label them as it make sense which can be further use for easier management and analysis.

Further Reading:

https://en.wikipedia.org/wiki/Affinity_diagram
https://www.interaction-design.org/literature/article/affinity-diagrams-learn-how-to-cluster-and-bundle-ideas-and-facts

CRC Cards | Glossary

Definition:

CRC Cards was originally proposed by Ward Cunningham and Kent Beck as a teaching tool, brainstorming tool used in the design of object-oriented software. CRC card is Class-Responsibility-Collaboration card, popular among expert designers and recommended by extreme programming supporters.

CRC cards are index cards, which are used by team members to write relevant class/object of their design which are partioned in threes areas. Class Name on top of the card, with Responsibilities of the class in the left and on right list of other collaborators (classes) with which class interacts to fulfil its responsibilities.

Advantage of CRC cards are, it keeps the complexity of the design at a minimum on a small card where designers focuses on essentials of the class, preventing them to getting them into details and implementation. These cards are portable and can be easily laid out on a table and re-arranged  while discussing a design. You create a CRC card by writing out a scenario which identifies the actors and actions which the actors do. Nouns should turn into the classes of the card, verbs typically turn into the responsibilities of the card, and collaborators are the other cards  with which the card will be interacting.

Further Reading:

Book: The CRC card book by David Bellin
https://en.wikipedia.org/wiki/Class-responsibility-collaboration_card
http://agilemodeling.com/artifacts/crcModel.htm