Software Architecture Flashcards
What are the steps to design a system architecture?
Understand system-environment interactions, identify major components, and organize using an architectural pattern.
What do design patterns provide?
Best practices, good designs, and reusable solutions for common problems.
How are design patterns typically structured?
They include a name, problem description, abstract solution, and consequences.
Why are design patterns abstract?
They offer templates for solutions that can be adapted to different settings.
How do design patterns help in development?
They speed up development by providing well-documented solutions to common problems.
What is the ACID principle in databases?
Atomicity, Consistency, Isolation, and Durability for reliable transactions.
How is atomicity applied in use cases?
A complete transaction between user and system must provide measurable value.
What is data consistency in use cases?
Use case interactions should involve consistent object instances from class diagrams.
Why is isolation important in use cases?
It ensures use cases operate independently of each other.
What does data durability imply for use cases?
Measurable value persists outside the system after the transaction completes.
What are the two main data exchange approaches in subsystems?
Central database repository and subsystem-specific databases with data passing.
How is data validated in a system?
Check validity, return an error if invalid, or provide a list of valid options.
What are the CRUD operations?
Create, Read, Update, and Delete for managing data in use cases.
Why is flagging data as deleted better than deletion?
It avoids reference issues and retains important data in records.
What is essential for transaction history records?
Unique transaction ID, entity IDs, valid codes, description, and audit details (user, timestamp).
What is a good practice for storing valid codes?
Create a dedicated class and store valid codes in the database.
What is object-relational mapping (ORM) used for?
Managing the relationship between objects and database entities, forming a 4th tier in N-tier architecture.
What are manual data interfaces between systems?
Human-driven data transfer with high error rates and slow processing.
What are automated data interfaces?
Machine-driven data transfer with potential conflicts in stored data.
What is the single database option for integration?
A unified database for multiple systems, but adding new systems is challenging.
What is the federated data option?
Separate databases sharing valid codes, reducing system intertwining.