Search Results

0
votes

What is the hardest technical question you have had to answer in an interview?

I was in an interview for a programming job this year where I asked more technical questions than the interviewers (mostly Joel test questions). The other interview was not necessarily IQ-h …
110
votes

What are Code Smells? What is the best way to correct them?

Magic numbers If code has lots of numbers all the way through it will be a pain to change them and you may miss something. Those numbers might be documented or commented, but comments and …
0
votes

Does the last element in a loop deserve a separate treatment?

The special case should be done outside the loop if it is only to be performed once. However, there may be an index or some other variable(s) that are just easier to keep inside the loop d …