-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06-practice.html
65 lines (65 loc) · 3.05 KB
/
06-practice.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
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>AIP Week 6: Architectures and design patterns</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 6</li>
</ul>
<ul>
<li><a href="06.html">Study</a></li>
<li class="title">Practice</li>
<li><a href="06-solutions.html">Solutions</a></li>
</ul>
</div>
<div class="container">
<h1>Architectures and design patterns</h1>
<p><i>Practice for Week 6: 5 September</i></p>
<div class="section">
<input id="sec1" type="checkbox" autocomplete="off" />
<label for="sec1"><h2>Introduction</h2></label>
<div class="content">
<p>The lecture this week was about design, rather than code.
The tutorial does not have worked-through activities like previous weeks.
Please feel free to use this time to ask your tutor questions, to suggest topics for class discussion and to work on your assignment.</p>
</div>
</div> <div class="section">
<input id="sec2" type="checkbox" autocomplete="off" />
<label for="sec2"><h2>Reflection</h2></label>
<div class="content">
<p>Whether or not you have completed Assignment 1, please open your Assignment files and browse through the code.</p>
<p>For each class in your project, decide:</p>
<ol>
<li>Which layer does the class belong to?</li>
<li>What would need to be changed if you used a different data store (e.g., you'll use JPA instead of JDBC in Assignment 2)?</li>
<li>What would need to be changed if you created a mobile or console interface?</li>
<li>How could you improve the separation into layers?</li>
</ol>
<p>In the deeper study, a number of design patterns were mentioned.
Do you recognize any of these design patterns in your code?</p>
</div>
</div> <div class="section">
<input id="sec3" type="checkbox" autocomplete="off" />
<label for="sec3"><h2>Other activities</h2></label>
<div class="content">
<ol>
<li>Catch up on any tutorials that you did not finish or did not understand.</li>
<li>Work on Assignment 1: next week is your last chance to submit your assignment.</li>
<li>Ask your tutor for help with problems in your Assignment.</li>
<li>Ask your tutor to discuss, in the class, any questions about the course so far.</li>
</ol>
</div>
</div>
</div>
</body>
</html>