--%>

Programming analysis and design

Illustrate the term programming analysis and design in brief.

E

Expert

Verified

Analysis: This is the process of finding out what requires to be done before how it must be done. In order to achieve this, the developer refers the existing systems and documents. Therefore, simply it is an art of the discovery.

Design: This is the process of adopting or selecting the one among the many, which best achieves the user’s requirements. Therefore, simply, it is compromising the method.

   Related Questions in Programming Languages

  • Q : Assembly condition codes What do you

    What do you mean by the term assembly condition codes?

  • Q : "This" Pointer "this" pointer: In C++

    "this" pointer: In C++ uses a unique keyword called "this" to represent a object that

  • Q : Explain Package declaration Package

    Package declaration: It is a declaration employed to name a package. This should be the first item in the source file, preceding any import statements. For example,     pa

  • Q : Write a function Write a function that

    Write a function that takes an integer value and returns the number with its digits reversed. For example, given 7631, the function should return 1367.

  • Q : Explain Untyped Allocations Untyped

    Untyped Allocations: In C/C++ untyped allocations such as malloc, calloc, and realloc can easily be used to create overlays, which again require translation overhead to keep the corresponding non-overlaid objects consistent.

    Q : Different layers in Windows Architecture

    Explain how many different layers comprise in Windows Architecture?

  • Q : Explain Method overriding Method

    Method overriding: It is a method stated in a super class might be overridden by a method of similar name stated in a sub class. The two methods should have similar name and number and types of formal arguments. Any checked exception thrown by sub-cla

  • Q : Explain Edit-compile-run cycle

    Edit-compile-run cycle: A common portion of the program development procedure. The source file is made initially and compiled. The syntax errors should be corrected in the editor before compiling it again. Once the program has been productively compil

  • Q : What is an Anonymous array Anonymous

    Anonymous array: It is an array formed without an identifier. The anonymous array is generally formed as an actual argument, for example:// generate an anonymous array of integers.    YearlyRainfall y2k = new YearlyRai