-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework2_1.html
101 lines (90 loc) · 4.67 KB
/
homework2_1.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
<!DOCTYPE HTML>
<html>
<head>
<title>统一建模语言理论测试</title>
<meta charset="utf-8" />
<meta name="author" content="kikychn" />
</head>
<body>
<h1>统一建模语言理论测试</h1>
<form>
<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="studentclass" value="1班" /></td>
<td>学号:</td>
<td><input type="text" name="studentid" value="001" /></td>
<td>姓名:</td>
<td><input type="text" name="studentname" value="王小闹" /></td>
</tr>
</table>
<h2>一、填空题(每空5分,共20分)</h2>
<ol>
<li>UML的中文全称是:
<input type="text" name="fillblank1" value="统一建模语言" />
</li>
<li>对象最突出的特征是:
<input type="text" name="fillblank2-1" value="封装性" />
<input type="text" name="fillblank2-2" value="继承性" />
<input type="text" name="fillblank2-3" value="多态性" />
</li>
</ol>
<h2>二、选择题(每题10分,共20分)</h2>
<ol>
<li>UML与软件工程的关系是:<br />
<br />
<input type="radio" name="singlechoice1" value="a" />(A) UML就是软件工程<br />
<input type="radio" name="singlechoice1" value="b" checked/>(B) UML参与到软件工程中软件开发过程的几个阶段<br />
<input type="radio" name="singlechoice1" value="c" />(C) UML与软件工程无关<br />
<input type="radio" name="singlechoice1" value="d" />(D) UML是软件工程的一部分<br />
<br />
</li>
<li>Java语言支持:<br />
<br />
<input type="radio" name="singlechoice2" value="a" checked/>(A) 单继承<br />
<input type="radio" name="singlechoice2" value="b" />(B) 多继承<br />
<input type="radio" name="singlechoice2" value="c" />(C) 单继承和多继承都支持<br />
<input type="radio" name="singlechoice2" value="d" />(D) 单继承和多继承都不支持<br />
</li>
</ol>
<h2>三、多选题(每题10分,共20分)</h2>
<ol>
<li>用例的粒度分为以下哪三种:<br />
<br />
<input type="checkbox" name="multichoice1" value="a" checked/>(A) 概述级<br />
<input type="checkbox" name="multichoice1" value="b" checked/>(B) 需求级<br />
<input type="checkbox" name="multichoice1" value="c" />(C) 用户目标级<br />
<input type="checkbox" name="multichoice1" value="d" checked/>(D) 子功能级<br />
<br />
</li>
<li>类图由以下哪三部分组成:<br />
<br />
<input type="checkbox" name="multichoice2" value="a" checked/>(A) 名称(Name)<br />
<input type="checkbox" name="multichoice2" value="b" checked/>(B) 属性(Attribute)<br />
<input type="checkbox" name="multichoice2" value="c" checked/>(C) 操作(Operation)<br />
<input type="checkbox" name="multichoice2" value="d" />(D) 方法(Function)<br />
</li>
</ol>
<h2>四、判断题(每题10分,共20分)</h2>
<ol>
<li>用例图只是用于和客户交流和沟通的,用于确定需求。<input type="radio" name="trueorfalse1" value="true" />√<input type="radio" name="trueorfalse1" value="false" checked/>x</li>
<li>在状态图中,终止状态在一个状态图中允许有任意多个。<input type="radio" name="trueorfalse2" value="true" checked/>√<input type="radio" name="trueorfalse2" value="false" />x</li>
</ol>
<h2>五、简答题(每题20分,共20分)</h2>
<ol>
<li>简述什么是模型以及模型的表现形式?<br />
<textarea name="shortanswer" rows="10" cols="90">模型是对现实世界的简化和抽象,模型是对所研究的系统、过程、事务或概念的一种表达形式。可以是物理实体;可以是某种图形;或者是一种数学表达式。</textarea>
</li>
</ol>
<input type="submit" name="score" value="计算分数" />
</form>
</body>
</html>