software design Flashcards

1
Q

What does SDLC stand for?

A

Software Design Life Cycle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the SDLC stages in order?

A

Planning, Analysis, Design, Development, Testing, Deployment, Maintenance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Functional requirements?

A

They are basically the requirements stated by the user which one can see directly in the final product.

Example: ‘Send email when a new customer signs up’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Non-Functional requirements?

A

These are basically the quality constraints that the system must satisfy according to the project contract. The priority to which these factors are implemented varies from one project to another.

Example: Modified data in a database should be updated for all users accessing it within 2 seconds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Software design is a step in SDLC, which moves the concentration from problem domain to solution domain. Tasks like:

A
  • Finding bugs,
  • Debugging,
  • Restructuring,
  • And changing the functionality of specific elements in the software application becomes quite easy due to software design.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Poor design can damage a brand and have a negative impact on sales as well as brand perception. Example:

A
  • Breaking of one functionality during development of
    another one.
  • Existing code not supporting future enhancements,
  • Complexity in understanding and maintaining the
    code,
  • Difficult to test feature in isolation,-Difficult to add new
    features.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Software Design?

A

a process to transform user requirements into a suitable form, which helps the programmer in software coding and implementation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Who writes Technical Design Docs (TDD) and what are they used for?

A

The development team

describes the minute detail of either the entire design or specific parts of it, such as: The signature of an interface, the requirements, detailed designs, including all datatypes/structures required (input data types, output data types, exceptions)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is an SRS ( Software Requirement Specification ) used for?

A

For assessing user requirements, an SRS (Software Requirement Specification) document is created.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is SSD?

A

SSD is a system sequence diagram(SSD) that shows, for a particular scenario of a use case, the events that external actors generate, their order, and possible inter-system events.

Tip: An actor is anyone who interacts with the system. Users are always actors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly