answersLogoWhite

0

When a programmer breaks down a problem into a series of high-level tasks and continues to break each task into successively more detailed subtasks, this method of algorithm creation is called:

User Avatar

Alena Kulas

Lvl 10
3y ago

What else can I help you with?

Related Questions

What is the design technique that programer use to breakdown algorithm into modules?

top-down design


Design an algorithm to show the different operations on a stack?

Design an algorithm to show the different operations on a stack?


Design an algorithm to show the different operations on degree?

Design an algorithm to show the different operation on the degree.


How do you overcome limitations of stacks in polygon filling?

You overcome limitations of the stack in polygon filling, or in any other algorithm, far that matter, but using an iterative technique, rather than a recursive technique. Recursion is quite useful, and can simplify algorithm design. Polygon filling, however, is a class of algorithm can potentially have a very deep recursion depth. This causes stress on the stack, hence the need for iteration.


What are the specifications of a modular design?

Modular Design is a technique which builds larger systems out of smaller systems, similar to the way polymers function. Modular design is a new form of study and the specifications for developing these systems are changing constantly.


Design step by steps algorithm on how to write the letter A and display the result?

Design step by steps algorithm on how to write the letter A and display the result


Design an algorithm for finding all the factors of positive integerfor example in the case of the integer 12your algorithm should report 12346 and 12?

design an algorithm for finding all the factors of a positive integer


Which methodology involves breaking of the requirements into modules with information on Interface Requirements between the modules?

High Level design


What is the difference between design and technique.?

The difference between design and technique is quite elaborate. Design is the development and documentation of an idea while technique is the strategy that is used to do something.


Advantages of problem analysis and algorithm design over directly writing program in high-level language?

It is much easier to discover errors in a program that is well analyzed and well designed. Furthermore, a thoroughly analyzed and carefully designed program is much easier to follow and modify.Even the most experienced programmers spend a considerable amount of time analyzing a problem and designing an algorithm


Error guessing is dynamic or static test design technique?

Error guessing is a dynamic test design technique


Difference between top down program design and bottom up program design?

Top down Program Design : Begins the design with main or top-level module, and progresses downwards to the lowest level modules or subsystem Bottom down Program Design : Begins the design with the lowest level modules or subsystems, and progresses upward to the main program, module or subsystem.