Final Review Software Engineering Recitation Edition

Everyone thinks the writing is okay, you can like, bookmark, and pay attention to it!
You can also visit my personal blog , it is estimated that it will be updated in recent years! Be friends with me! https://motongxue.cn


overview

Software and the Software Crisis

  1. insert image description here
  2. insert image description here
  3. Software engineering comes from the software crisis

  4. insert image description here

software life cycle

  1. insert image description here

software development model

waterfall model

insert image description here
  1. features
    insert image description here

  2. insert image description here

  3. Disadvantages: In the requirements analysis stage, when the requirements are determined, it is impossible to verify whether the requirements are correct and complete in time, and there is a lack of flexibility.

rapid prototyping model

insert image description here
  1. Quickly build a runnable program, and the functions he completes are often a subset of the final product functions
  2. insert image description here

incremental model

insert image description here
insert image description here

spiral model

  1. insert image description here
  2. insert image description here

feasibility study

Purpose

  1. Purpose: The purpose of the feasibility study is to determine whether the problem can be solved in the shortest possible time with the minimum cost
  2. substance:insert image description here
  3. Feasibility in four main areas
    1. economic feasibility
    2. technical feasibility
    3. operational feasibility
    4. legal feasibility

Steps in Feasibility Study

  1. Review and determine system size and goals
  2. Research the system in use
  3. Establish a high-level logic model of the new system
  4. Export and evaluate various scenarios
  5. Recommend a feasible plan
  6. Draft a preliminary development plan
  7. Prepare a feasibility study report and submit it for review

System flow chart

  1. definitioninsert image description here
  2. common symbols
    insert image description here

Cost-benefit analysis

  1. Purpose: It is to evaluate whether it is feasible to develop a new software project from an economic point of view, and to help the user department make a correct decision on whether to invest
  2. system cost
    1. Development costs
    2. Operation and maintenance cost
  3. System benefit
    1. tangible economic benefits
    2. intangible social benefits
  4. cost estimate
    1. line of code technology
    2. task decomposition technique
  5. Cost/Benefit Analysis Methodology
    1. Time value of money:F = P(1+i)
    2. payback period
    3. net income
    4. ROI

Software Requirements Analysis

Requirements Analysis Task

  1. Determine the comprehensive requirements for the system
    1. Functional Requirements
    2. performance requirements
    3. Reliability and Availability Requirements
    4. error handling requirements
    5. interface requirements
    6. constraint
    7. reverse demand
    8. may be required in the future
  2. Analysis System Data Requirements
  3. Create a logical model of the software
  4. Writing Software Requirements Specifications
  5. needs analysis review

Steps in Needs Analysis

  1. Requirements Acquisition: Survey Research
  2. Requirements Extraction: Analytical Modeling
  3. Requirements description: write SRS
  4. Requirements Verification

Common ways to get requirements

  1. customer interview
  2. Create a conjoint analysis team
  3. Problem Analysis and Confirmation

Requirements Verification

  1. Consistency: Ensure that requirements cannot contradict each other
  2. Completeness: Be able to describe every function or performance that users need
  3. Reality: The defined requirements can be realized through existing software and hardware technologies
  4. Effectiveness: Proving that it actually solves the problems faced by users

analytical modeling

insert image description here

Entity Relationship Diagram

ER diagram

state transition diagram

insert image description here

hierarchical block diagram

insert image description here

Venus diagram

insert image description here

IPO chart

insert image description here

data flow diagram

  1. definitioninsert image description here
  2. common symbolsinsert image description here

Data Dictionary

  1. Definition: It is a collection of information about data, that is, a collection of definitions for all elements contained in the data flow diagram
  2. Content: data flow, data flow components (data elements), data storage, processing
  3. How to define data:
    1. The way data is composed of data elements: sequential, selective, repeated, optional
    2. insert image description here
  4. Purpose: To provide people with descriptive information about data in the process of software analysis and design
    1. as a tool in the analysis phase
    2. Estimate the impact that changing a data will have
    3. is the first step in database development

Judgment table

insert image description here
Usually consists of four parts.

  • List of conditions: all relevant conditions
  • Action List: Definition of actions.
  • Condition combination: the value combination of each condition.
  • Corresponding action: the operation performed under each condition value combination.

Sample
Duty Allowance Calculation Decision Form
insert image description here

decision tree

  • A decision tree is a graphical representation of a decision table
  • It has roughly the same function as the judgment table, but it is more intuitive than the judgment table, and is easy to understand and master.
  • example
  • insert image description here

Overall software design

Database Design

  1. From a practical point of view, data normalization chooses the third normal form in most occasions

Software Detailed Design

mission and purpose

  1. Fundamental purpose: to determine how the required system should be realized concretely
  2. Task: Design the "blueprint" of the program, and the programmer codes according to this blueprint

Detailed Design Tool

Program flow chart

Box plot (NS plot)

Basic control structure:

  1. order
  2. choose
  3. cycle

shortcoming:

  1. Premature consideration of control flow without regard to the overall structure of the program
  2. prone to unstructured program structure
  3. Not easy to represent data structures and hierarchies

Problem Analysis Diagram (PAD Diagram)

Process Design Language (PDL)

object-oriented methodology

object-oriented model

To develop software with object-oriented method, it usually needs to establish three kinds of models
: object model, dynamic model and function model .

  • Object model: describes the data structure of the system, and is the most critical, basic, and core model in the target system;
  • Dynamic model: describes the control structure of the system;
  • Functional Model: Describes the functionality of the system.

exercise

  1. The complete software structure is usually represented by a HIPO diagram
  2. In the technical design of the white box method, the statement is the weakest coverage standard
  3. The structured life cycle method is often used in software development, and it is generally called the waterfall model because of its characteristics
  4. The common feature of the three basic control structures of the program is that there can only be one exit and one entry
  5. Confirmation testing in the software testing process is mainly to find errors in the requirements analysis phase
  6. The most important part of software maintenance work is integrity maintenance
  7. The most expensive phase in the software life cycle is the software maintenance phase
  8. The basic task of detailed design is to determine the algorithm design of each module
  9. The structured analysis method is a method of demand analysis for data flow. The structured analysis method is described using data flow diagram DFD and data dictionary DD.
  10. Large-scale software testing includes four steps: unit testing, integration testing, confirmation testing, and system testing.
  11. insert image description here
  12. The basic four components of the data flow diagram: source and destination, processing, data flow, data storage files.

END

This document is for final review! No systematic elaboration!

Updated on July 5, 2021

Everyone thinks the writing is okay, you can like, bookmark, and pay attention to it!
You can also visit my personal blog , it is estimated that it will be updated in recent years! Be friends with me! https://motongxue.cn


Guess you like

Origin blog.csdn.net/CrazyMooo/article/details/118462756