forked from tws-online-quiz/git-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (102 loc) · 4.18 KB
/
index.html
File metadata and controls
107 lines (102 loc) · 4.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>LuAnyuan homework</title>
<style>
</style>
</head>
<body>
<form>
<h1>UML理论测试</h1>
<br />
<table>
<tr>
<td>考试科目:</td>
<td>统一建模语言</td>
<td>时间:</td>
<td>100分钟</td>
<td>得分:</td>
<td>100</td>
</tr>
<tr>
<td>班级:</td>
<td><input type="text" name="class" value="1班"></td>
<td>学号:</td>
<td><input type="number" name="id" value="001"></td>
<td>姓名:</td>
<td><input type="text" name="name" value="王小闹"></td>
</tr>
</table>
<h2>一、填空题(每空5分,共20分)</h2>
<ol type="1">
<li>UML的中文全称是:<input type="text" name="question1" value="统一建模语言"></li>
<li>对象最突出的特征是:
<input type="text" name="question2_1" value="封装性">
<input type="text" name="question2_2" value="多态性">
<input type="text" name="question2_3" value="继承性">
</li>
</ol>
<h2>二、选择题(每题10分,共20分)</h2>
<ol type="1">
<li>UML与软件工程的关系是:
<br />
<br />
<input type="radio" id="question3" name="question3" value="A">(A)UML就是软件工程<br />
<input type="radio" id="question3" name="question3" value="B" checked>(B)UML参与到软件工程中软件开发过程的几个阶段<br />
<input type="radio" id="question3" name="question3" value="C">(C)UML与软件工程无关<br />
<input type="radio" id="question3" name="question3" value="D">(D)UML是软件工程的一部分<br />
<br />
</li>
<li>Java语言支持:
<br />
<br />
<input type="radio" id="question4" name="question4" value="A" checked>(A)单继承<br />
<input type="radio" id="question4" name="question4" value="B">(B)多继承<br />
<input type="radio" id="question4" name="question4" value="C">(C)单继承和多继承都支持<br />
<input type="radio" id="question4" name="question4" value="D">(D)单继承和多继承都不支持<br />
</li>
</ol>
<h2>三、多选题(每题10分,共20分)</h2>
<ol type="1">
<li>用例的粒度分为以下哪三种:
<br />
<br />
<input type="checkbox" id="question5" name="question5" value="A" checked>(A)概述级<br />
<input type="checkbox" id="question5" name="question5" value="B" checked>(B)需求级<br />
<input type="checkbox" id="question5" name="question5" value="C">(C)用户目标级<br />
<input type="checkbox" id="question5" name="question5" value="D" checked>(D)子功能级<br />
<br />
</li>
<li>类图由以下哪三部分组成:
<br />
<br />
<input type="checkbox" id="question6" name="question6" value="A" checked>(A)名称(Name)<br />
<input type="checkbox" id="question6" name="question6" value="B" checked>(B)属性(Attribute)<br />
<input type="checkbox" id="question6" name="question6" value="C" checked>(C)操作(Operation)<br />
<input type="checkbox" id="question6" name="question6" value="D" >(D)方法(Function)<br />
</li>
</ol>
<h2>四、判断题(每题10分,共20分)</h2>
<ol type="1">
<li>用例图只是用于和客户交流和沟通的,用于确定需求。
<input type="radio" id="question7" name="question7" value="Y">√
<input type="radio" id="question7" name="question7" value="N" checked>×
</li>
<li>在状态图中,终止状态在一个状态图中允许有任意多个。
<input type="radio" id="question8" name="question8" value="Y" checked>√
<input type="radio" id="question8" name="question8" value="N" >×
</li>
</ol>
<h2>五、简答题(每题20分,共20分)</h2>
<ol type="1">
<li>简述什么是模型以及模型的表现形式?
<br />
<textarea cols="80" rows="7">模型是对现实世界的简化和抽象,模型是对所有研究的系统、过程、事物或概念的一种表达形式。可以是物理实体;也可以是某种图形;或者是一种数学表达式。
</textarea>
</li>
</ol>
<button type="submit">计算分数</button>
</form>
</body>
</html>