In: Accounting
Discuss Two things that can go wrong in program development
Please do rate this.Thanks.
The two things which software development should always avoid or in a way it can be said that these are the flaws which are made by the developer in the program development.
1.There are architectural problems.The networking code is popping up its own dialog boxes from the middle of nowhere. These problems can be solved, one at a time, by carefully moving code, refactoring, changing interfaces. They can be done by one programmer working carefully and checking in his changes all at once, so that nobody else is disrupted. Even fairly major architectural changes can be done without throwing away the code.
2.Second reason programmers think that their code is a mess is that it is inefficient. But this only affects a small part of the project, which can be optimized or even rewrite. So the developer don’t have to rewrite the whole thing. When optimizing for speed, 1% of the work gets results for 99% of the output.