answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
User Avatar

Anonymous

Lvl 1
3y ago
Thanks
More answers
User Avatar

Wiki User

12y ago

bla

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Advantages of problem analysis and algorithm design over directly writing program in high-level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the need of an algorithm?

Not every program, no. An algorithm describes the procedural steps required to solve a particular problem using natural language. A program usually consists of many such algorithms, each of which can be defined as a function or a series of functions encapsulated by a class. The more trivial the function the less likely you need to write an algorithm.


What are the advantages of saving water?

By saving water, we can save life of many creatures of the world who directly or indirectly depends on water.


What is c plus plus program use to convert algorithm in to c plus plus program?

You can't convert an algorithm into code. That is the job of the programmer, not the language. Algorithm's are expressed in plain-English and typically use pseudocode to broadly demonstrate the implementation of the algorithm. However, it is the programmer's job to convert these algorithms into working code. Pseudocode isn't a programming language as such, but it uses structures and statements that are familiar to any programmer and can be easily translated into any language. However, pseudocode is not a standard so there are many different ways to present pseudocode to the programmer. Moreover, pseudocode is generalised and is far too generic to be converted directly into any one language, never mind C++, which can take advantage of the underlying hardware to produce more efficient algorithms than would otherwise be implied by the pseudocode alone. Hence the need for plain-English algorithms in conjunction with the pseudocode. Programmer's can process all this information far more easily than any computer can. Even if you could program a converter for one algorithm, there's no guarantee it would work for any other algorithm. The time spent programming an algorithm converter would be far better spent simply translating the algorithm yourself.


Difference between manual system and automated system in system analysis and design?

A manual system analysis require individuals to supply input directly into a system designed to simulate real life events. An automated system is controlled by technology to automatically supply input.


What are the advantages and disadvantages of deforestation. HTML?

if the trees are removed, the heavy rain hits the soil directly and washes it away leaving the stony and infertile soil.

Related questions

How can employees directly support the hazard analysis and countermeasures function of the?

How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program


How can employees directly support the hazard analysis and countermeasures function of the army?

How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program


How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program?

How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program


How can employees directly support the Hazard Analysis and Countermeasures functions of the Army Safety Programs?

How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program


How can employees directly support the hazard analysis and countermeasures functions of the Army Safety Program?

How can employees directly support Hazard Analysis and countermeasures functions of the Army Safety Program


How can employees directly support the hazard analysis and countermeasures function of th earmy safety program?

How can employees directly support the Hazard Analysis and Countermeasures function of the Army Safety Program


What is the need of an algorithm?

Not every program, no. An algorithm describes the procedural steps required to solve a particular problem using natural language. A program usually consists of many such algorithms, each of which can be defined as a function or a series of functions encapsulated by a class. The more trivial the function the less likely you need to write an algorithm.


How can employees directly support hazard analysis?

http://www.clixsense.com/?6855096


How can employees directly support the hazard analysis?

http://www.clixsense.com/?6855096


In an analysis of variance which is directly influenced by the size of the sample variances?

df within


In an analysis of variance is SS directly influenced by the size of the sample variances?

Yes it is.


What is worst fit algorithm?

The worst fit algorithm is a means by which an operating system can choose which space in memory to store information (this algorithm can also be used for allocating hard disk space). The algorithm searches for free-space in memory in which it can store the desired information. The algorithm selects the largest possible free space that the information can be stored on (i.e., that is bigger than the information needing to be stored) and stores it there. This is directly opposed to the best fit algorithm which searches the memory in much the same way as before, only instead chooses the open memory space which is the smallest available which the information can be stored in (i.e., that is bigger than the information needing to be stored).