forked from tws-online-quiz/git-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUML_testing.html
More file actions
118 lines (115 loc) · 4.85 KB
/
Copy pathUML_testing.html
File metadata and controls
118 lines (115 loc) · 4.85 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
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
width: 1000px;
}
</style>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>UML_testing</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<header>
</header>
</head>
<body>
<h1>Unified Modeling Language Theory Test</h1>
<table border="0">
<tr>
<td>Test Subject:</td>
<td>Unified Modeling Language</td>
<td>Time:</td>
<td>100 minute</td>
<td>Score:</td>
<td>100</td>
</tr>
<tr>
<td>Class:</td>
<td>
<select name="class">
<option value="Class1" selected="true">Class1</option>
<option value="Class2">Class2</option>
<option value="Class3">Class3</option>
<option value="Class4">Class4</option>
</select>
</td>
<td>Student ID:</td>
<td><input type="text" name="stu_id" value="001"></td>
<td>Name:</td>
<td> </td>
<td><input type="text" name="name" value="Darcy"></td>
</tr>
</table>
<h1>1、Fill in the blanks(5 points per space,20 points total)</h1>
<div>
<p>1.The Full name of UML in Chinese is:
<input type="text" value="Unified Modeling Language"></p>
<p>2.The most prominent feature of the object is:
<input type="text" value="Encapsulation">
<input type="text" value="Inheritance">
<input type="text" value="Polymorphism"></p>
</div>
<h1>2、Multiple choice question(10 points per space,20 points total)</h1>
<div>
<p>1.The relationship between UML and software engineering is:</p>
<input type="radio" name="choice1">
(A) UML is software engineering<br>
<input type="radio" name="choice1" checked="true">
(B) UML is participates in several stages of the software development process in software engineering<br>
<input type="radio" name="choice1">
(C) UML has nothing to do with software engineering<br>
<input type="radio" name="choice1">
(D) UML is part of software engineering<br>
<p>1.Java language support:</p>
<input type="radio" name="choice2">
(A) Single inheritance<br>
<input type="radio" name="choice2" checked="true">
(B) Multiple inheritance<br>
<input type="radio" name="choice2">
(C) Single inheritance and multiple inheritance support<br>
<input type="radio" name="choice2">
(D) Single inheritance and multiple inheritance are not supported<br>
</div>
<h1>3、Multiple choice(10 points per space,20 points total)</h1>
<div>
<p>1.The granularity of the use cas is divided into the following three:</p>
<input type="checkbox" name="mchoice1" checked="true">
(A) Overview level<br>
<input type="checkbox" name="mchoice1" checked="true">
(B) Demand level<br>
<input type="checkbox" name="mchoice1">
(C) User target level<br>
<input type="checkbox" name="mchoice1" checked="true">
(D) Sub-function level<br>
<p>2.The class diagram consists of which of the following three parts:</p>
<input type="checkbox" name="mchoice2" checked="true">
(A) Name<br>
<input type="checkbox" name="mchoice2" checked="true">
(B) Attribute<br>
<input type="checkbox" name="mchoice2" checked="true">
(C) Operation<br>
<input type="checkbox" name="mchoice2">
(D) Function<br>
</div>
<h1>4、True or False(10 points per space,20 points total)</h1>
<div>
<p>1.Use case diagrams are only used to communicate and communicate with customers to determine demand。
<input type="radio" name="tof1">√
<input type="radio" name="tof1" checked="true">×</p>
<p>2.In the state diagram,the termination state allows any number of multiples in a state diagram。
<input type="radio" name="tof2" checked="true">√
<input type="radio" name="tof2">×</p>
</div>
<h1>5、Short answer question(20 points per space,20 points total)</h1>
<div>
<p>1.Briefly describu what the model is and how is behaves?</p>
<textarea name="answer" id="" cols="30" rows="10">
A model is a simplification and abstraction of the read world.A model is an expression of the system,
process,thing or concept of research.Can be a physical entity;can be a certain graphic;or a matheatical
expression.
</textarea>
</div>
<input type="submit" value="Calculation score">
</body>
</html>