News
Technical services
Introduction to software development
DATE:【2019-09-30 14:32】 TIPS:【】次

The content of software development is: requirements, design, programming and testing.


(1) Requirements: More than just user needs, it should be all the requirements encountered in development. For example, you first need to know what problems are being solved in order to solve this problem; what data should be entered in the test case... In order to clearly understand these requirements, you often have to communicate with customers, project managers, etc.


(2) Design: Before coding, there must be a plan to tell you what to do, how the structure is, and so on. You must follow this, otherwise it may be a mess.


(3) Programming: If your program can't run up or meet the customer's requirements at the project deadline, you won't get the money.


(4) Test: The purpose is to let you know when it is completed. If you are smart, you should write tests first so that you know if you are really done. Otherwise, you often don't know what features are actually completed and how far away from the expected goal.


UP:
NEXT: