English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

For homework, I need a common problem encountered while programming, and a few viable solutions for this problem. Thanks!

2006-09-04 19:50:29 · 3 answers · asked by Hello Hello 2 in Computers & Internet Software

3 answers

Problem: BUGS
Solution: DEBUGS


:)

2006-09-04 19:57:28 · answer #1 · answered by tep 2 · 0 0

the biggest problem I have ever run into as as system administrator is the dreaded ID10T error. Where the idiot user (notice the similarity) does something stupid. Setting up password keys and dictionaries is sometimes difficult, but if you make a system foolproof only fools will use it. Communication between the developer, programer and user is important. All three must be focused on the end product. If the end user does not / is not able to comprehend the nature of the data inputs then the developers and programmer's time is waisted because you have to bo back and redefine goals snd start over. AAAAAARRRRRRRGGG

2006-09-04 19:59:32 · answer #2 · answered by auhunter04 4 · 0 0

common problems are bugs that might be present in programming logic.

they include array overflow in languages like C,C++ where in u may be accessing elements outside the array. Eg. int arr[5];
for last element u may access it by arr[5] which points to 6th element that does not exist.

Sol: try debugging by printing the partial outputs at every stage and use debuggers present in the program editors like emacs etc.

2006-09-04 19:53:51 · answer #3 · answered by Nikhil V 2 · 0 0

fedest.com, questions and answers