001 002package examination3; 003 004/** 005 * CSC140 Foundations of Computer Science: Examination 3 006 * 007 * <p> 008 * Write three paragraphs here that describe 009 * some of what software engineers have learned about 010 * how to develop software. 011 * </p> 012 * 013 * <p> 014 * You might find these references helpful. 015 * (You may replace these with other references.) 016 * </p> 017 * <ul> 018 * <li> 019 * <a href="http://www.waterfall-model.com" target="_blank"> 020 * Waterfall Model 021 * </a> 022 * </li> 023 * 024 * <li> 025 * <a href="http://www.agilemanifesto.org" target="_blank"> 026 * Agile Development 027 * </a> 028 * </li> 029 * 030 * <li> 031 * <a href="http://www.sei.cmu.edu" target="_blank"> 032 * Software Engineering Institute 033 * </a> 034 * </li> 035 * </ul> 036 * 037 * <p> 038 * Paragraph 1 039 * </p> 040 * 041 * <p> 042 * Paragraph 2 043 * </p> 044 * 045 * <p> 046 * Paragraph 3 047 * </p> 048 * 049 * @author Your Name 050 * @version 30 January 2015 051 */ 052public class Examination3 { 053 054 055 public static void main(String[] args) { 056 Sort sort = new Sort(); 057 058 System.out.println(); 059 060 Matrix matrix = new Matrix(); 061 } // main( String [] ) 062 063} // Examination3