-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinalProjJava.html
More file actions
111 lines (95 loc) · 3.73 KB
/
Copy pathfinalProjJava.html
File metadata and controls
111 lines (95 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang =" EN" xml:lang =" EN" dir =" ltr">
<head>
<meta http-equiv="content-type" content="text/xml; charset=iso-8859-1" />
<title>Final Project</title>
<link href =" http://www.cs.iupui.edu/~aharris/ajhStandard.css"
rel =" stylesheet"
type =" text/css" />
</head>
<body>
<h1>Final Project</h1>
<h2>Overview</h2>
<p>
Create a masterpiece that demonstrates your understanding of java
programming in the modality of your choice. Illustrate that you
understand the fundamental concepts of this discipline and can create
an original example specific to your own interests.
</p>
<h2>Requirements</h2>
<p>
As this course covered specific technologies, they are exected as a
minimum standard for your final project. Unless otherwise cleared
with your instructor, your project should have the following elements:
</p>
<ul>
<li>Be written in the Java programming language</li>
<li>Incorporate some sort of advanced data structure (database, array-based, or file-based)</li>
<li>Incorporate some sort of user interface design (standalone or web-based)</li>
<li>Solve some identified problem</li>
<li>Work as designed without crashing</li>
<li>Illustrate a basic knowledge of advanced programming principles</li>
</ul>
<h2>Preparatory Documentation</h2>
<p>
Note some documentation will be required before the project is
complete. This is a completely normal software engineering practice,
as you must have a basic requirements analysis in place before working
on any significant project. The following documentation will be
required one week before the final project due date:
</p>
<ul>
<li>A one-page (or more) summary of the problem to be solved.
<ul>
<li>What will the project do?</li>
<li>Who are the main users</li>
<li>What kinds of problems will they solve with the system?</li>
<li>What technical skills can you expect of users?</li>
<li>Do you expect any hardware limitations? (bandwidth, old
browsers)</li>
<li>Will this be a GUI design? applet? JSP? Why did you choose this
modality</li>
<li>What are your basic design decisions? (color scheme, page
layout, CSS design.)</li>
</ul>
</li>
<li>A data plan. (if needed)
<ul>
<li>An ER diagram of the data structure (if appropriate)</li>
<li>The data should be in at least third normal form</li>
<li>SQL script may be supplied at this time</li>
</ul>
</li>
<li>A system overview.
<ul>
<li>Diagram the main states of your system.</li>
<li>See diagrams for spyMaster, QuizMachine in book for
examples</li>
<li>Describe the typical user's path through he system.</li>
</ul>
</li>
</ul>
<h2>Actual Project</h2>
<p>
The project itself must be available online at the designated time
(although it doesn't necessarily need to run online if it's a
standalone app.) This project must consist of binary code (class or
jar files,) the actual running project and the remainder of the
documentation, including:
</p>
<ul>
<li>Source code listing for each Java file in the project</li>
<li>Source code listing for each SQL script used in the project</li>
<li>Passwords for any password-protected fields, so instructors can
log in as administrator</li>
<li>Any other documentation you feel is appropriate (usability
tests, CSS stylesheets, etc)</li>
<li>You will be required to present your project in class. You will
have 5 minutes to demonstrate the main features of your project.</li>
<li>All work must be be original. If you use external libraries,
algorithms etc. you must dost dcument your sources.</li>
</ul>
</body>
</html>