Comments on Example Homework (9/21 reverse an array in place) 1. Include line numbers. 2. Do a good job on indentation. 3. Use short, appropriate variable names 4. Minimal documentation 5. No wrap-around. 6. Include header information (name, course#, assignment id) 7. Sample runs must be from the code (do not submit code that does not correspond to a run) 8. Use fixed-width font (e.g., Courier) 9. Color coding not required 10. Default name for class and package is ok. 11. OK to use static methods as shown. It is also ok to use non-static methods. 12. Landscape or portrait print mode is ok. 13. Do NOT use this formatting. The else keyword should not follow a closing brace ( } ) if (condition) { stmt; stmt; } else { stmt; stmt; } 14. Use horizontal white space. Example of unacceptable use of horizontal white space: if(x!=a[i]){ y=fun2(f[a[i]])*(5.0/a[i]); }