📄 takeassmcmd[1].html
字号:
<html>
<head>
<link rel=stylesheet href="/css/cteform.css" type="text/css">
<title>Take Assessment: Practical Quiz 3 © 2002-2007 iCarnegie, Inc. - UI Version 3.19</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache"><META HTTP-EQUIV="Expires" CONTENT="-1"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"><script language="JavaScript" src="/js/cteform.js"></script>
<script language="JavaScript" src="/js/ctecoursespt.js"></script>
<script language="JavaScript" src="/js/cteajax.js"></script>
<script language="JavaScript">
function FetchReferencedContent(questionName, referencedName)
{
var cmd =
"https://www.icarnegie.com:443/fetchrefcontentcmd.php?id=12959222" + "&question_name=" + encodeURIComponent(questionName)
+ "&name=" + encodeURIComponent(referencedName);
var winName = questionName + referencedName.replace(/\./g, "_");
window.open(cmd,
winName.replace(/-/g, "_"),
"height=600,width=700,toolbar=no,menubar=no,location=no,status=no,resizable,scrollbars").focus();
}
function ResetTarget()
{
var f = document.forms["Assm"];
f.target = "";
}
function SetUploadTime(targetCmd, questionId, enableReadyForGrading)
{
var f = document.forms["Assm"];
f.action = targetCmd;
var elt = f.elements["client_time"];
if (typeof(elt) != 'undefined') {
var now = new Date();
elt.value = CreateSortableDate(now.getUTCFullYear(),
now.getUTCMonth() + 1,
now.getUTCDate(),
now.getUTCHours(),
now.getUTCMinutes(),
now.getUTCSeconds());
}
if (f.elements["file_to_add_" + questionId].value == '') {
alert('Please specify a file to upload.');
return false;
}
if (enableReadyForGrading) {
elt = f.elements["ready_for_grading"];
if (typeof(elt) != 'undefined') {
elt.disabled = false;
}
var now = new Date();
f.target = now.getUTCFullYear()
+ '_' + (now.getUTCMonth() + 1)
+ '_' + now.getUTCDate()
+ '_' + now.getUTCHours()
+ '_' + now.getUTCMinutes()
+ '_' + now.getUTCSeconds();
var w =
window.open("",
f.target,
"height=300,width=500,toolbar=no,menubar=no,scrollbars=no,resizable=yes");
w.focus();
}
else {
f.target = "";
}
return true;
}
</script></head><body onload="">
<span class=dialogueheader>Take Assessment: Practical Quiz 3</span><br><br>
<form name="Assm" id="Assm" method=POST action="https://www.icarnegie.com:443/submitassmcmd.php" enctype="multipart/form-data">
<td width=5><br></td><a name="top_of_page"></a><table><tr>
<input type=hidden name="object_id" id="object_id" value='13001906' ></tr></table>
<table><tr>
<td width=5><br></td> <td class=td0_instructions align=left valign=top >
<span class=instructions >Please answer the following question(s).<br />
If the assessment includes multiple-choice questions, click the "Submit Answers" button when you have completed those questions.</span></td>
</tr></table>
<table><tr>
<td width=5><br></td><script language="JavaScript">document.write('<td class=instructions>' + 'You have 120 minutes to take this assessment.' + '<br>' + 'Please complete this assessment by ' + ComputeLocalDate('2007-10-22 08:27:17 UTC') + '.' + '</td>');</script> <input type=hidden name="MAX_FILE_SIZE" id="MAX_FILE_SIZE" value='200000' ><td width=5><br></td></tr></table>
<a name="top_10639334"></a><table><tr>
<td width=5><br></td> <td class=td0_highlight-label width=12 align=right valign=top nowrap >
<span class=highlight-label >1.</span></td>
<td width=5><br></td> <td valign=top class=td0_x align=left > <a href="#10639334">Go to bottom of question.</a> </td>
</tr></table>
<table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left > <!-- new pg 042903 ici -->
<h2 align="center"><cite>Computer Class Diagram</cite></h2>
<h3>Prerequisites, Goals, and Outcomes</h3>
<blockquote> <b><i>Prerequisites:</i></b> Before you begin this exercise, you
need mastery of the following:
<ul>
<li> <em>UML</em>
<ul>
<li>Knowledge of class diagram notation</li>
</ul>
<li><i>Object-Oriented Design</i>
<ul>
<li>Knowledge of the association relationship</li>
</ul>
</ul>
<p> <b><i>Goals:</i></b> Reinforce the your ability to model associations between
classes using UML
<p> <b><i>Outcomes:</i></b> You will master the following skills:
<ul>
<li>Produce UML class diagrams that model associations between classes
</ul>
</blockquote>
<h3>Description</h3>
<p>Use Eclipse, <a href="http://horstmann.com/violet/" target="externalWindow">Violet</a>,<em> </em>PowerPoint, or
another tool of your choosing to produce a UML class diagram that models the
following personal computer:</p>
<ul>
<li>The personal computer <code></code> consists of a monitor, a system box,
a keyboard, and a mouse.</li>
<li>The system box consists of a chassis, zero or more
hard disks, and a motherboard. </li>
<li>The motherboard consists of one processor and one memory.</li>
</ul>
<p>The components of the personal
computer contain the following information:</p>
<ul>
<li>Personal computer:
<ul>
<li>A string that represents the name of the model</li>
</ul>
</li>
<li>Monitor:
<ul>
<li>A double that represents the size of the monitor in inches</li>
</ul>
</li>
<li>Keyboard:
<ul>
<li>A string that represents the type of connector (<code>"PS/2"</code> or <code>"USB"</code>)</li>
</ul>
</li>
<li>Mouse:
<ul>
<li>An integer that represents the number of mouse buttons</li>
<li>A string that represents the type of connector (<code>"PS/2"</code>
or <code>"USB"</code>)</li>
</ul>
</li>
<li>Hard disk:
<ul>
<li>A double that represents the storage capacity in megabytes</li>
<li>A double that represents the rotational speed in
revolutions per minute</li>
</ul>
</li>
<li>Chassis:
<ul>
<li>An integer that represents the number of bays</li>
<li>Three double values that represent the dimensions (height, width, and depth) in
inches</li>
<li>A double that represents the power supply rating in watts</li>
</ul>
</li>
<li>Processor:
<ul>
<li>A string that represent the processor name</li>
<li>An integer that represents the processor speed in hertz</li>
<li>An integer that represents the
bus speed in hertz</li>
</ul>
</li>
<li>Memory:
<ul>
<li>A string that represents the architecture (<code>"DDR"</code>, <code>"RDRAM",</code>
or <code>"SDRAM"</code>) </li>
<li>An integer that represents the amount of memory in bytes</li>
</ul>
</li>
</ul>
<p>The UML class diagram should include class
attributes, class associations, association multiplicities,
and association attributes. Use Sun's coding conventions when naming classes and attributes. </p>
<p>
Save the UML class diagram in a SVG, GIF, or JPG format in a file named <em>computer-uml</em>.</p>
<h3>Submission</h3>
<p>Upon completion, submit <strong>only</strong> the SVG, GIF, or JPG file <em>computer-uml</em>. The extension of this file will depend on the format of the image. </p>
</td>
<td width=5><br></td></tr></table>
<a name="10639334"></a><table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left > <a href="#top_10639334">Go to top of question.</a> </td>
<td width=5><br></td></tr></table>
<hr><table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left ><span class=lbl0-x>File to submit:</span><br> <input type=file class='x' name=file_to_add_10639334 value="" size=20 maxLength=500 > </td>
<td width=5><br></td><td valign=bottom> <input class=x value="Upload File" type=submit name=add_file id=add_file style="width: 12em;" onClick='return SetUploadTime("https://www.icarnegie.com:443/takeassmcmd.php?question_id=10639334", 10639334, false)'></td><td width=5><br></td><td valign=bottom> <input class=x value="Forward File" type=submit name=mail_file id=mail_file style="width: 12em;" onClick='return SetUploadTime("https://bjtu-cqc.icarnegie.com:443/mailuploadcmd.php?question_id=10639334", 10639334, true)'></td><td width=5><br></td><td valign=bottom> <input class=x value="Refresh" onClick="ChangeCommand(document.Assm, 'https://www.icarnegie.com:443/refreshassmtakecmd.php?question_id=10639334')" type=submit onfocus='ResetTarget()'></td><td width=5><br></td><td valign=bottom> <input class=x-font value="Ready for Grading" onClick="ChangeCommand(document.Assm, 'https://www.icarnegie.com:443/takeassmcmd.php?question_id=10639334')" type=submit name=ready_for_grading id=ready_for_grading style="width: 12em;" onfocus='ResetTarget()' disabled></td><td width=5><br></td></tr></table>
<hr><table><tr>
<input type=hidden name="pr_state_10639334" id="pr_state_10639334" value='a:2:{i:0;s:10:"incomplete";i:1;a:0:{}}' ><td width=5><br></td></tr></table>
<a name="top_10639337"></a><table><tr>
<td width=5><br></td> <td class=td0_highlight-label width=12 align=right valign=top nowrap >
<span class=highlight-label >2.</span></td>
<td width=5><br></td> <td valign=top class=td0_x align=left > <a href="#10639337">Go to bottom of question.</a> </td>
</tr></table>
<table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left > <!-- new pg 042903 ici -->
<h2 align="center"><cite>Animals Class Diagram</cite></h2>
<h3>Prerequisites, Goals, and Outcomes</h3>
<blockquote> <b><i>Prerequisites:</i></b> Before you begin this exercise, you
need mastery of the following:
<ul>
<li> <em>UML</em>
<ul>
<li>Knowledge of class diagram notation</li>
</ul>
<li><i>Object-Oriented Design</i>
<ul>
<li>Knowledge of the specialization/generalization relationship</li>
</ul>
</ul>
<p> <b><i>Goals:</i></b> Reinforce the your ability to model specialization/generalization
relationships between classes using UML
<p> <b><i>Outcomes:</i></b> You will master the following skills:
<ul>
<li>Produce UML class diagrams that model specialization/generalization relationships
between classes
</ul>
</blockquote>
<h3>Description</h3>
<p>Use Eclipse, <a href="http://horstmann.com/violet/" target="externalWindow">Violet</a>,
PowerPoint, or another tool of your choosing to produce a UML class diagram
that shows the specialization/generalization relationships between the following
classes. Use the shortest form to show only the name of each class. Use Sun's coding conventions when naming classes:</p>
<ul>
<li>Fish</li>
<li>BlueWhale</li>
<li>Dog</li>
<li>Animal</li>
<li>Eagle</li>
<li>Shark</li>
<li>Mammal</li>
<li>GrayWhale</li>
<li>Bird</li>
<li>Whale</li>
</ul>
<p>Use the following resource to obtain information about these names:</p>
<ul>
<li><a href="http://www.eNature.com" target="externalWindow">eNature.com</a></li>
</ul>
<p>Save the UML class diagram in a SVG, GIF, or JPG format in a file named <em>animals-uml</em>.</p>
<h3>Submission</h3>
<p>Upon completion, submit <strong>only</strong> the SVG, GIF, or JPG file <em>animals-uml</em>. The extension of this file will depend on the format of the image. </p>
</td>
<td width=5><br></td></tr></table>
<a name="10639337"></a><table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left > <a href="#top_10639337">Go to top of question.</a> </td>
<td width=5><br></td></tr></table>
<hr><table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left ><span class=lbl0-x>File to submit:</span><br> <input type=file class='x' name=file_to_add_10639337 value="" size=20 maxLength=500 > </td>
<td width=5><br></td><td valign=bottom> <input class=x value="Upload File" type=submit name=add_file id=add_file style="width: 12em;" onClick='return SetUploadTime("https://www.icarnegie.com:443/takeassmcmd.php?question_id=10639337", 10639337, false)'></td><td width=5><br></td><td valign=bottom> <input class=x value="Forward File" type=submit name=mail_file id=mail_file style="width: 12em;" onClick='return SetUploadTime("https://bjtu-cqc.icarnegie.com:443/mailuploadcmd.php?question_id=10639337", 10639337, true)'></td><td width=5><br></td><td valign=bottom> <input class=x value="Refresh" onClick="ChangeCommand(document.Assm, 'https://www.icarnegie.com:443/refreshassmtakecmd.php?question_id=10639337')" type=submit onfocus='ResetTarget()'></td><td width=5><br></td><td valign=bottom> <input class=x-font value="Ready for Grading" onClick="ChangeCommand(document.Assm, 'https://www.icarnegie.com:443/takeassmcmd.php?question_id=10639337')" type=submit name=ready_for_grading id=ready_for_grading style="width: 12em;" onfocus='ResetTarget()' disabled></td><td width=5><br></td></tr></table>
<hr><table><tr>
<input type=hidden name="pr_state_10639337" id="pr_state_10639337" value='a:2:{i:0;s:10:"incomplete";i:1;a:0:{}}' ></tr></table>
<table><tr>
<td width=5><br></td> <td valign=top class=td0_x align=left > <a href="#top_of_page">Go to top of assessment.</a> </td>
<input type=hidden name="max_mins_per_try" id="max_mins_per_try" value='120' > <input type=hidden name="end_date" id="end_date" value='2007-10-22 08:27:17 UTC' > <input type=hidden name="course_section_id" id="course_section_id" value='12959222' > <input type=hidden name="assm_id" id="assm_id" value='9709626' > <input type=hidden name="template_id" id="template_id" value='13001906' > <input type=hidden name="record_id" id="record_id" value='13001907' > <input type=hidden name="client_time" id="client_time" value='' ></tr></table>
<table><tr>
<td width=5><br></td> <td valign=top class=td0_copyright align=left > © Copyright 2006 iCarnegie, Inc. All rights reserved. </td>
</tr></table>
</form>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -