1 / 12

Program Development

Program Development. Goals. By the end of this lecture you should … Understand how programmers develop an application using a well-defined process. Developing a Program. Analyze the problem Plan a solution to the problem Design the user interface Code the solution

kpuckett
Download Presentation

Program Development

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Program Development

  2. Goals By the end of this lecture you should … • Understand how programmers develop an application using a well-defined process.

  3. Developing a Program • Analyze the problem • Plan a solution to the problem • Design the user interface • Code the solution • Test and debug the solution • Complete program documentation • Plan for next release

  4. 1. Analyze the Problem • Questions to ask: • Who is my intended audience? • What SPECIFIC outcomes does my audience expect? • What business rules is my audience expecting to have incorporated into the solution? • What is the SCOPE of the problem?

  5. 2. Plan a Solution • What types of programming structures do I need? • Sequential structures • Conditional structures • Looping structures

  6. 2. Plan a Solution (continued) • What data structures do I need? • Variables • Lists • Arrays • What form will my input take? • What form will my output take?

  7. 3. Design the User Interface • Is the UI “learnable”? • Is it simple? (Limit user choices) • Does the UI promote error-proof use? • Is the layout of the UI arranged in a fashion conducive to the user’s culture and expectations?

  8. 4. Code the Solution • Develop an actual program from an algorithm • Should be the “easiest” part of the process – all the work should already be done!

  9. 5. Test & Debug the Solution • Alpha Testing – Internal testing done with expected client data. • Beta Testing – Testing done at the client site with their data. • Try to predict common user errors • Test subjects should be Power Users, Normal Users and Neophytes

  10. 6. Complete Documentation • User Documentation: • User Manual • Technical Documentation (for System Administrators) • Internal Documentation: • Documentation comments • Code comments • Procedural comments

  11. 7. Plan Next Release • What bugs do we need to fix? • Are bugs “critical”? (Fix in a minor release) • If bugs are not critical, you should fix them in the next major release. • What product enhancements do the users want for the next release?

  12. Summary • Analyze the problem • Plan a solution to the problem • Design the user interface • Code the solution • Test and debug the solution • Complete program documentation • Plan for next release

More Related