Microsoft interview question

What is a bad program?

Interview Answer

Anonymous

Nov 16, 2017

A problem is a bad program if it is -- disorganized. Code are not in clear modules. Logic and the purpose of the functions are not clear. -- poorly documented. Variable names are confusing. Documentation is not clear. -- inefficient. There are a lot of extra for loops, unnecessary array operations, and so forth.

1