-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-challenge.html
56 lines (56 loc) · 2.63 KB
/
01-challenge.html
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
<!DOCTYPE html>
<html>
<head>
<title>AIP Week 1: Introduction and challenges</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="resources/normalize.css" rel="stylesheet" />
<link href="resources/stylize.css" rel="stylesheet" />
</head>
<body>
<div class="menu">
<ul>
<li><a href="https://online.uts.edu.au/">UTS Online</a></li>
<li class="title">/</li>
<li><a href="index.html">Learning</a></li>
<li class="title">/</li>
<li class="title">Week 1</li>
</ul>
<ul>
<li><a href="01.html">Study</a></li>
<li><a href="01-practice.html">Practice</a></li>
<li class="title">Challenge</li>
<li><a href="01-solutions.html">Solutions</a></li>
</ul>
</div>
<div class="container">
<h1>Introduction and challenges</h1>
<p><i>Practice for Week 1: 1 August</i></p>
<div class="section">
<input id="sec1" type="checkbox" autocomplete="off" />
<label for="sec1"><h2>Design Challenge 1</h2></label>
<div class="content">
<p>For Assignment 1, you will need to build a software system that can create, read, update and delete records.</p>
<p>For example, in an address book application, each record would be a Person.</p>
<p>In a to-do list application, each record would be an item on the to-do list.</p>
<p>Now think about your idea for Assignment 1:</p>
<p>In your application, what is the structure of each record?</p>
<p>How would you translate the records into a Java class?</p>
</div>
</div> <div class="section">
<input id="sec2" type="checkbox" autocomplete="off" />
<label for="sec2"><h2>Design Challenge 2</h2></label>
<div class="content">
<p>If you found this week's practical activities very easy, then a more challenging warm-up activity would be to see if you could improve the design of the code:</p>
<ul>
<li>How could you store more information about a person (e.g., date of birth, gender)?</li>
<li>Could you read Person details from a file saved on the disk drive?</li>
<li>Would inheritance be useful at all? If so, how?</li>
<li>What would make for a better design?</li>
<li>Could you create a more general table-builder class, and use that class to generate the results?</li>
</ul>
</div>
</div>
</div>
</body>
</html>