TM354 Unit 1 - Approaches to Software Development Flashcards
What errors can arise in software with the characteristic = Malleability ?
As change is easy to make, changes may be be made without thorough consideration
What errors can arise in software with the characteristic = Complexity ?
the more complex the software, the more chance there is of a change affecting other areas
What errors can arise in software with the characteristic = Size?
The greater the number of lines of code, the greater the number of likely errors
What is the defining quality of good software system?
Useful, Usable, Reliable, Flexible, Available, Affordable
How does greater flexibility make software system more affordable
Users needs change over time. Time to implement change in flexible system is less than for less flexible system. As labour costs are highest component of software cost, flexible s/w is more affordable
Give 2 reasons why software might not meet users needs
software is usually outofdate when delivered because:
- some needs are missed during requirements capture
- users’ needs change with time
suggest a means of measuring maintainability of s/w system
- effort to locate and fix errors
2. effort to adapt s/w to meet users’ needs
what can be learnt from legacy systems about developing good system
Legacy sys may start with flexibility, but change over time This needs standards and documentation.
suggest a reason why legacy systems will always be a problem
inherent malleability makes s/w easy to change. Metalworking analogy. Blacksmith - component brittle
why consider splitting large project into chunks
limit to how much one person can remember at any time. easier to manage tasks if split into chunks
how does complexity of s/w affect maintenance
it is essential to make change without knowing all about the system. change is difficult when there are many dependencies
what is a module
module is an identifiable part. that is considered separately
why does it help to have low coupling
few dependencies. therefore any errors are less likely to propagate through system
give examples of kinds of info that would be valuable when considering a change
2 kinds of info : which modules are clients of the module in question what assumptions were made in client modules of module in questions
what are context dependencies
services of other modules that module needs to work properly
what are benefits of modules with defined interfaces
developers need to know only about the module
developers can understand aspects of software more thoroughly
should be easier to find bugs
chance of module reuse increased
why does it help to have high cohesion
module carries out sensible set of operations or activities. it implies one major abstraction per module. easier to understand the purpose of module
what characteristics should a module display to show it is easy and cheap to develop and maintain
module should have low coupling and high cohesion and well defined interface
why is it important to achieve balance between coupling and cohesion
may have choice between small set of loosely coupled less cohesive modules or larger set of tightly coupled more cohesive modules.former is difficult to understand. In latter, relationships may be over complex
suggest similarities and differences between software architecture and building architecture
they are both abstractions of the structure of a system. they represent systems that affect concerns of different stakeholders.
Changing a building once complete is expensive. changing details or internal decoration is cheap.
Software different , particularly malleability and complexity
what are characteristics of a component
component is module with good abstraction for a problem. component should be capable of being reused or being replaced later within existing software. well defined interface with strong cohesion and low coupling
how does concept of an architecture contribute to component reuse
arch of s/w sys embodies high level decisions about structure of system and this architec may apply to more than one system
which form of decomposition might be used in s/w architecture
basic form of decomposition used in s/w arch is partitioning to meet separate concerns, each being addressed by subsystem. e.g separate UI from core business, or build / reuse components for some of the partitions
what are similarities and differences between components and services
both promote reuse and flexibility.
both use public interfaces to allow requestors to make use of functionality without relying on their implementation
component usually implemented in an oo technology
service uses communication standards that allow interoperation of diverse technologies
give characteristics of an engineering approach that support argument that s/w development is an engineering discipline
meeting set of requirements defined process and clear activities developers can apply skills validation and verification needed use of tools and standards follows code of practice
what is a development process
set of rules that defines how a sw dev project should be carried out. no of activities and process model indicates how these are ordered
difference between customer and user ?
customer is person who pays. Users is person who uses.
why is maintenance a core activity ?
Maint allows a system to evolve over its lifetime so it continues to be useful
what task is needed when s/w dev is partitioned into number of increments
task devoted to the integration of the increments will be needed
what are assumptions of the waterfall model
assumption that one activity or phase is finished, it is not revisited.no need for rework. all assumes and endpoint is identified.
why might a s/w dev company specialise in specific sector e.g. banking, health
through specialisation, company can foster experience in given domain. Developers would have knowledge to understand the problems raised by the users.
what is added to a Dev process with introduction of Risk Mgt ?
identification, evaluation, reviewing of risks
steps introduce feedback into process - risks are controlled
why is traceability important
important for reconstruction of significant events
should be able to trace backwards from a component
how does doco contribute to traceability
doco records the progress from req to implem. u can trace from requirement to implementation
what s/w system would you minimize or avoid doco
if s/w has short lifespan or will be discarded
how would you characterise agile doco?
agile doc should be gathered with a purpose.
should be easy to use and justify the effort
why is it important to review notebook
to identify what worked and what did not. helps to trace events leading to decisions made.
What is a model?
An abstract representation of a specification, system or point of view
What is a good model ?
A ‘good model’ is an abstraction that allows those involved to concentrate on the essentials of a complex problem by excluding non-essential details while capturing those of interest.
What are 2 kinds of rule that govern the use of a modelling language?
A modelling language is normally diagrammatic, although it can be textual. In common with natural language, there are two distinct
kinds of rule:
◦ those that determine whether or not a diagram is legal – the syntax of a diagram
◦ those that define what a legal diagram means – the semantics of a diagram.
Does a modelling language need to be associated with a particular development process?
No, a modelling language does not dictate how it should be used and it is up to a development process to define which notations are appropriate and how they should be used. With experience practitioners tend to pick and mix from different modelling languages and use the notations that are most appropriate to the task – most modelling languages do not provide notations for all types of tasks.
What are the required characteristics of a std modelling language?
No, a modelling language does not dictate how it should be used and it is up to a development process to define which notations are appropriate and how they should be used. With experience practitioners tend to pick and mix from different modelling languages and use the notations that are most appropriate to the task – most modelling languages do not provide notations for all types of tasks.
How does a standard modelling language contribute to software development?
When choosing a modelling language, it should be: ◦ sufficiently expressive ◦ easy to learn and use ◦ unambiguous ◦ widely used ◦ supported by suitable tools.