-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (105 loc) · 4.33 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UML_testing</title>
</head>
<body>
<form action="/" method="post" id="test_form">
<h1>Unified Modeling Language Theory Test</h1>
<table>
<tr>
<td>Test Subject:<td>
<td>Unified Model Language</td>
<td>Time:</td>
<td>100 minute</td>
<td>Score:</td>
<td>100</td>
</tr>
<tr>
<td>Class:<td>
<td><input type="text" value="Class1" /></td>
<td>Student ID:</td>
<td><input type="text" value="001" /></td>
<td>Name:</td>
<td><input type="text" value="Darcy" /></td>
</tr>
</table>
<h1>1、Fill in the blanks(5 points per space,20 points total)</h1>
<ol>
<li>
The full name of UML in Chinese is:
<input type="text" value="Unified Model Language" />
</li>
<li>
The most prominent feature of the object is:
<input type="text" value="Encapsulation" />
<input type="text" value="Inheritance" />
<input type="text" value="Polymorphism" />
</li>
</ol>
<h1>2、Multiple choice question (10 points per space,20 points total)</h1>
<ol>
<li>
The relationship between UML and software engineering is:
<ul type="none">
<li><label><input name="UML" type="radio" value="" />(A)UML is software engineering </label></li>
<li><label><input name="UML" type="radio" value="" />(B)UML participates in several stages of the softwaredevelopment process in software engineering </label></li>
<li><label><input name="UML" type="radio" value="" />(C)UML has nothing to do with software engineering </label></li>
<li><label><input name="UML" type="radio" value="" />(D)UML is part of software engineering </label></li>
</ul>
</li>
<li>
Java language support:
<ul type="none">
<li><label><input name="UML1" type="radio" value="" />(A)Single inheritance </label></li>
<li><label><input name="UML1" type="radio" value="" />(B)Multiple inheritance </label></li>
<li><label><input name="UML1" type="radio" value="" />(C)Single inheritance and multiple inheritance support</label></li>
<li><label><input name="UML1" type="radio" value="" />(D)Single inheritance and multiple inheritance are not supported </label></li>
</ul>
</li>
</ol>
<h1>3、Multiple choice(10 points per space,20 points total)</h1>
<ol>
<li>
The granularity of the use case is divided into the following three:
<ul type="none">
<li><label><input name="UML" type="checkbox" value="" />(A)Overeview level </label></li>
<li><label><input name="UML" type="checkbox" value="" />(B)Demand level </label></li>
<li><label><input name="UML" type="checkbox" value="" />(C)User target level </label></li>
<li><label><input name="UML" type="checkbox" value="" />(D)Sub-function level</label></li>
</ul>
</li>
<li>
The class diagram consists of which of the following three parts:
<ul type="none">
<li><label><input name="UML1" type="checkbox" value="" />(A)Name </label></li>
<li><label><input name="UML1" type="checkbox" value="" />(B)Attribute</label></li>
<li><label><input name="UML1" type="checkbox" value="" />(C)Operation</label></li>
<li><label><input name="UML1" type="checkbox" value="" />(D)Function</label></li>
</ul>
</li>
</ol>
<h1>4、Ture or False(10 points per space,20 points total)</h1>
<ol>
<li>
User case diagrams are only used to communicate and communicate with customers to determine demand.
<label><input name="boolean1" type="radio" value="true" />✔ </label>
<label><input name="boolean1" type="radio" value="false" />✖ </label>
</li>
<li>
In the state digram, the termination state allows any numberof mutiples in a state diagram.
<label><input name="boolean2" type="radio" value="true" />✔ </label>
<label><input name="boolean2" type="radio" value="false" />✖ </label>
</li>
</ol>
<h1>5、Short answer question(20 points per space,20 points total)</h1>
<p>1.Briefly describe what the model is and how it behaves?</p>
<textarea rows="8" cols="125">
A model is a simplification and abstraction of the real world.A model is an expression of the system,process,thing or concept of research.Can be a physical entity;can be acertain graphic;or a mathematical expression.
</textarea>
<br>
<button type="submit" form="test_form">Validate the payment</button>
</form>
</body>
</html>