亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? pq8.html

?? 卡耐基課程練習(xí)
?? HTML
字號(hào):
<span class="dialogueheader">Take Assessment: Practical Quiz 8</span><br><br>
  <form name="Assm" id="Assm" method="post" action="https://seqcc.icarnegie.com:443/submitassmcmd.php" enctype="multipart/form-data">

<a name="top_of_page"></a><input name="object_id" id="object_id" value="657660" type="hidden"><table><tbody><tr>
  </tr></tbody></table>
<table><tbody><tr>
<td width="5"><br></td>  <td class="td0_instructions" align="left" valign="top">
     <label 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.</label></td>
</tr></tbody></table>
<input name="MAX_FILE_SIZE" id="MAX_FILE_SIZE" value="512000" type="hidden"><table><tbody><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('2008-11-29 10:47:11 UTC') + '.' + '</td>');</script><td class="instructions">You have 120 minutes to take this assessment.<br>Please complete this assessment by Sat Nov 29 2008 18:47:11 GMT+0800.</td>  <td width="5"><br></td></tr></tbody></table>

<a name="top_14432"></a><table><tbody><tr>
<td width="5"><br></td>  <td class="td0_highlight-label" align="right" nowrap="nowrap" valign="top" width="12">
     <label class="highlight-label">1.</label></td>
<td width="5"><br></td>  <td class="td0_x" align="left" valign="top"> <a href="#14432">Go to bottom of question.</a> </td>
</tr></tbody></table>
<table><tbody><tr>
<td width="5"><br></td>  <td class="td0_x" align="left" valign="top"> <!-- new pg 042903 ici -->
<h2 align="center">VHS and DVD Movies</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>Object Oriented Programming</em>
<ul>
        <li>Knowledge of abstract classes 
          <ul>
            <li> How to define an abstract class</li>

          </ul>
        </li>
        <li>Knowledge of interfaces 
          <ul>
            <li> How to define an interface</li>
            <li>How to define a class that implements an interface</li>
          </ul>
        </li>

      </ul>
  </li></ul>
  <p> <b><i>Goals:</i></b> Reinforce your ability to use Java interfaces and abstract 
    classes
  </p><p> <b><i>Outcomes:</i></b> You will demonstrate mastery of the following: 
  </p><ul>
    <li>Writing interfaces</li>

    <li>Writing classes that implement interfaces</li>
    <li>Writing abstract classes</li>
  </ul>
</blockquote>
<h3>Background </h3>

<p>In this assignment, you will create the following classes and interfaces:</p>
<ul>
  <li>Abstract class 
    <ul>

      <li><code>Movie</code></li>
    </ul>
  </li>
  <li>Interfaces 
    <ul>
      <li> <code>VHS</code></li>
      <li> <code>DVD</code></li>

    </ul>
  </li>
  <li>Classes 
    <ul>
      <li> <code>VHSMovie</code></li>
      <li> <code>DVDMovie</code></li>
    </ul>

  </li>
</ul>
<h3>Description</h3>
<p>The following class diagram illustrates the relationships between the interfaces 
  and classes:</p>
<table border="0" cellpadding="2" cellspacing="2" width="75%">
  <tbody><tr> 
    <td><img src="/content/SSD/SSD3/4.2.0.1/normal/pg-class-imp/pg-adv-clss-dsgn/assm-qz-pr-intrfcs/pool-pr-intrfcs/qn-pr-movie/handout/images/uml-movie.jpg" alt="Figure 1 Class diagram" height="423" width="564"></td>
  </tr>
  <tr> 
    <td><strong>Figure 1 </strong><em> Class diagram</em></td>

  </tr>
</tbody></table>
<p>The specifications of the interfaces and classes are as follows:</p>
<h4>Abstract class <code>Movie</code></h4>
<p>The abstract class <code>Movie</code> stores the information of a movie.</p>
<p><em>Instance variables:</em></p>
<ul>
  <li><em><code>String title</code></em>. The title of the movie</li>

  <li><code><em>String[] actors</em></code>. The names of the actors in the movie</li>
  <li><code><em>String director</em></code>. The director of the movie</li>
</ul>
<p><em>Constructor and methods:</em></p>
<ul>
  <li> 
    <pre> <em>Movie(String initialTitle,
       String[] initialActors,
       String initialDirector)</em></pre>

    <p>Creates a <code>Movie</code> object and initializes the instance variables.</p>
  </li>
</ul>
<ul>
  <li><code><em>String getTitle()</em></code>. Returns the value of the variable 
    <code>title</code>.</li>
</ul>

<ul>
  <li><code><em>String[] getActors()</em></code>. Returns a reference to the array 
    <code>actors</code>. </li>
</ul>
<ul>
  <li><code><em>String getDirector()</em></code>. Returns the value of the variable 
    <code>director</code>.</li>
</ul>
<ul>

  <li><code><em>String toString()</em></code>. Returns the value of the variable 
    <code>title</code>.</li>
</ul>
<h4>Interface <code>VHS</code></h4>
<p>The interface <code>VHS</code> declares the methods for obtaining VHS tape 
  information.</p>
<p><em>Methods:</em></p>

<ul>
  <li> <code><em>String getFormat()</em></code>. Returns the format of the VHS 
    tape.</li>
</ul>
<ul>
  <li> <em><code>String getLanguage()</code></em>. Returns the language of the 
    VHS tape.</li>
</ul>
<h4>Interface <code>DVD</code></h4>

<p>The interface <code>DVD</code> declares the methods for obtaining DVD information.</p>
<p><em>Methods:</em></p>
<ul>
  <li> <code><em>int getRegionCode()</em></code>. Returns the region code of the 
    DVD.</li>
</ul>
<ul>
  <li> <code><em>String[] getAudioTracks()</em></code>. Returns an array with 
    the names of the audio tracks on the DVD.</li>

</ul>
<ul>
  <li> <code><em>String[] getSubtitles()</em></code>. Returns an array with the 
    languages of the subtitles on the DVD.</li>
</ul>
<h4>Class <code>VHSMovie</code></h4>
<p>The class <code>VHSMovie</code> extends class <code>Movie</code> and implements 
  the interface <code>VHS</code>. </p>

<p><em>Instance variables:</em></p>
<ul>
  <li><code><em>String format</em></code>. The format of the VHS movie</li>
  <li><code><em>String language</em></code>. The language of the VHS movie</li>
</ul>
<p><em>Constructor and methods:</em></p>
<ul>
  <li> 
    <pre><em>VHSMovie(String initialTitle,
         String[] initialActors,
         String initialDirector, 
         String initialFormat,
         String initialLanguage)</em></pre>

    <p>Creates a <code>VHSMovie</code> object and initializes the instance variables.</p>
  </li>
  <li> <em><code>String getFormat()</code></em>. Returns the value of the variable 
    <code>format</code>.</li>
</ul>
<ul>

  <li> <code><em>String getLanguage()</em></code>. Returns the value of the variable 
    <code>language</code>.</li>
</ul>
<ul>
  <li> <code><em>String toString()</em></code>. Returns a string representation 
    of the object with the following format: 
    <pre><em>title</em>,<em>format</em>,<em>language</em></pre>

    <p>where:</p>
    <ul>
      <li><code><em>title</em></code> is the title of the VHS movie.</li>
      <li><code><em>format</em></code> is the format of the VHS movie.</li>
      <li><code><em>language</em></code> is the language of the VHS movie.</li>

    </ul>
    <p>The fields are delimited by a comma ( , ). You can assume that the fields 
      themselves do not contain any commas.</p>
  </li>
</ul>
<h4>Class <code>DVDMovie</code></h4>
<p>The class <code>DVDMovie</code> extends class <code>Movie</code> and implements 
  the interface <code>DVD</code>.</p>

<p><em>Instance variables:</em></p>
<ul>
  <li><code><em>int regionCode</em></code>. The region code of the DVD movie</li>
  <li><code><em>String[] audioTracks</em></code>. The names of the audio tracks 
    on the DVD movie</li>
  <li><code><em>String[] subtitles</em></code>. The languages of the subtitles 
    on the DVD movie</li>
</ul>
<p><em>Constructor and methods:</em></p>

<ul>
  <li> 
    <pre><em>DVDMovie(String initialTitle,
         String[] initialActors,
         String initialDirector, 
         int initialRegionCode,
         String[] initialAudioTracks,
         String[] initialSubtitles)</em></pre>
    Creates a <code>DVDMovie</code> object and initializes the instance variables.</li>
</ul>
<ul>
  <li> <code><em>int getRegionCode()</em></code>. Returns the value of the variable 
    <code>regionCode</code>.</li>

</ul>
<ul>
  <li> <code><em>String[] getAudioTracks()</em></code>. Returns a reference to 
    the array <code>audioTracks</code>.</li>
</ul>
<ul>
  <li> <code><em>String[] getSubtitles()</em></code>. Returns a reference to the 
    array <code>subtitles</code>.</li>

</ul>
<ul>
  <li> <code><em>String toString()</em></code>. Returns a string representation 
    of the object with the following format: 
    <pre><em>title</em>,<em>regionCode</em><em></em></pre>
    <p>where:</p>
    <ul>
      <li><code><em>title</em></code> is the title of the DVD movie.</li>

      <li><code><em>regionCode</em></code> is the region code of the DVD movie.</li>
    </ul>
    <p>The fields are delimited by a comma ( , ). You can assume that the fields 
      themselves do not contain any commas.</p>
  </li>
</ul>
<h4>Test driver classes</h4>
<p> Complete implementations of the following test drivers are provided in the 
  student archive:</p>

<ul>
  <li>Class <code>TestMovie</code> </li>
  <li>Class <code>TestVHS</code> </li>
  <li>Class <code>TestDVD</code> </li>
  <li>Class <code>TestVHSMovie</code> </li>

  <li>Class <code>TestDVDMovie</code> </li>
</ul>
<h3>Files</h3>
The following files are needed to complete this assignment: 
<ul>
  <li><cite><a href="/content/SSD/SSD3/4.2.0.1/normal/pg-class-imp/pg-adv-clss-dsgn/assm-qz-pr-intrfcs/pool-pr-intrfcs/qn-pr-movie/handout/student-files.zip"><code>student-files.zip</code></a></cite> 
    — Download this file. This archive contains the following test drivers: 
    <ul>
      <li><cite><code>TestMovie.java</code></cite> </li>

    </ul>
    <ul>
      <li><cite><code>TestVHS.java</code></cite> </li>
      <li><cite><code>TestDVD.java</code></cite> </li>
      <li><cite><code>TestVHSMovie.java</code></cite> </li>
      <li><cite><code>TestVHSMovie.java</code></cite> </li>

    </ul>
  </li>
</ul>
<h3>Tasks </h3>
<p>Implement the abstract class <code>Movie</code>, the interfaces <code>VHS</code> 
  and <code>DVD</code>, and the concrete classes <code>VHSMovie</code> and <code>DVDMovie</code>. 
  Document using Javadoc and follow Sun's code conventions. The following steps 
  will guide you through this assignment. Work incrementally and test each increment. 
  Save often. </p>

<ol start="1">
  <li><strong>Extract </strong> the files by issuing the following command at 
    the command prompt: 
    <p><tt>C:\&gt;</tt><kbd>unzip student-files.zip</kbd> </p>
  </li>
</ol>
<ol start="2">
  <li><strong>Then</strong>, implement the class <code>Movie</code> from scratch. 
    Use <code>TestMovie</code> to test your implementation. </li>

</ol>
<ol start="3">
  <li><strong>Next</strong>, implement the interface <code>VHS</code> from scratch. 
    Use <code>TestVHS</code> to test your implementation. </li>
</ol>
<ol start="4">
  <li><strong>Then</strong>, implement the interface <code>DVD</code> from scratch. 
    Use <code>TestDVD</code> to test your implementation. </li>

</ol>
<ol start="5">
  <li><strong>Next</strong>, implement the class <code>VHSMovie</code> from scratch. 
    Use <code>TestVHSMovie</code> to test your implementation. </li>
</ol>
<ol start="6">
  <li><strong>Finally</strong>, implement the class <code>DVDMovie</code> from 
    scratch. Use <code>TestDVDMovie</code> to test your implementation. </li>

</ol>
<h3>Submission</h3>
<p>Upon completion, submit <strong>only</strong> the following:</p>
<ol>
  <li><code>Movie.java</code> </li>
  <li><code>VHS.java</code> </li>

  <li><code>DVD.java</code> </li>
  <li><code>VHSMovie.java</code> </li>
  <li><code>DVDMovie.java</code> </li>
</ol>
 </td>
<td width="5"><br></td></tr></tbody></table>
<a name="14432"></a><table><tbody><tr>

<td width="5"><br></td>  <td class="td0_x" align="left" valign="top"> <a href="#top_14432">Go to top of question.</a> </td>
<td width="5"><br></td></tr></tbody></table>
<hr><table><tbody><tr>
<td width="5"><br></td>  <td class="td0_x" align="left" valign="top"><label class="lbl0-x" for="file_to_add_14432">File to submit:</label><br> <input class="x" name="file_to_add_14432" value="" size="20" maxlength="500" type="file"> </td>
<td width="5"><br></td><td valign="bottom">  <input class="x" value="Upload File" name="add_file" id="add_file" style="width: 12em;" onclick='return SetUploadTime("https://seqcc.icarnegie.com:443/takeassmcmd.php?question_id=14432", 14432, false)' type="submit"></td><td width="5"><br></td></tr></tbody></table>
<hr><input name="pr_state_14432" id="pr_state_14432" value="a:2:{i:0;s:10:&quot;incomplete&quot;;i:1;a:0:{}}" type="hidden"><table><tbody><tr>
  </tr></tbody></table>

<input name="max_mins_per_try" id="max_mins_per_try" value="120" type="hidden">  <input value="2008-11-29 10:47:11 UTC" id="end_date" name="end_date" type="hidden">  <input value="421063" id="course_section_id" name="course_section_id" type="hidden">  <input value="14429" id="assm_id" name="assm_id" type="hidden">  <input value="657660" id="template_id" name="template_id" type="hidden">  <input value="657661" id="record_id" name="record_id" type="hidden">  <input value="" id="client_time" name="client_time" type="hidden"><table><tbody><tr>
<td width="5"><br></td>  <td class="td0_x" align="left" valign="top"> <a href="#top_of_page">Go to top of assessment.</a> </td>
  </tr></tbody></table>
<table><tbody><tr>
<td width="5"><br></td>  <td class="td0_copyright" align="left" valign="top"> ? Copyright 2006 iCarnegie, Inc.  All rights reserved. </td>

</tr></tbody></table>
</form>


?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久国产字幕高潮| 国产丝袜在线精品| 99re成人在线| 高清不卡一区二区在线| 国产成人日日夜夜| 成人美女视频在线观看| 成人综合婷婷国产精品久久免费| 夜夜操天天操亚洲| 欧美在线小视频| 欧美日韩国产综合视频在线观看| 欧美日韩视频在线第一区| 欧美视频在线一区二区三区| 欧美日韩一区 二区 三区 久久精品| 99久久精品国产一区| 欧美色精品在线视频| 7777精品伊人久久久大香线蕉最新版| 久久国产婷婷国产香蕉| 亚洲免费观看高清完整版在线| 国产精品久久久久久久午夜片 | 91蜜桃免费观看视频| 一区二区三区资源| 久久久久久久精| 欧美日韩国产首页| 成人av资源网站| 欧美aⅴ一区二区三区视频| 欧美激情一二三区| 欧美tk—视频vk| 色噜噜偷拍精品综合在线| 韩日av一区二区| 日韩欧美一卡二卡| 4438x亚洲最大成人网| 色老综合老女人久久久| 亚洲高清免费在线| 亚洲精品ww久久久久久p站| 欧美国产1区2区| 国产午夜精品一区二区| 日韩激情在线观看| 亚洲国产精品一区二区www在线| 国产亚洲人成网站| 久久婷婷国产综合精品青草| 日韩欧美在线123| 欧美一区二区三区在线观看视频| 在线精品视频免费观看| 色婷婷激情综合| 欧美日韩精品一区二区三区四区 | 国产欧美视频一区二区| 欧美一级淫片007| 精品国产伦一区二区三区观看体验 | 精品视频在线免费看| 成年人国产精品| 成人一道本在线| 欧美日韩精品高清| 欧美一级专区免费大片| 日本一区二区久久| 亚洲男人的天堂在线aⅴ视频 | 亚洲成在线观看| 黑人精品欧美一区二区蜜桃| 成人久久视频在线观看| 91国内精品野花午夜精品| 6080午夜不卡| 久久影院午夜片一区| 久久中文娱乐网| 国产精品成人一区二区艾草| 中文字幕在线观看不卡| 久久久精品国产免费观看同学| 精品久久久三级丝袜| 亚洲综合免费观看高清在线观看| 亚洲一区二区三区四区中文字幕| 午夜精品免费在线| www.性欧美| 日韩欧美国产成人一区二区| 国产日产亚洲精品系列| 亚洲小说欧美激情另类| 五月婷婷久久综合| 91亚洲精品一区二区乱码| 日韩欧美一级二级三级久久久| 亚洲激情一二三区| 丁香六月综合激情| 欧美久久久影院| 亚洲国产中文字幕在线视频综合| jiyouzz国产精品久久| 制服丝袜一区二区三区| 国产精品视频免费看| 成人高清视频免费观看| 国产精品丝袜在线| 91麻豆国产精品久久| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 国产在线视频不卡二| 国产亚洲欧美日韩俺去了| 成人午夜激情视频| 国产精品超碰97尤物18| 91精品1区2区| 日韩av网站在线观看| 精品国产伦一区二区三区观看体验| 国精产品一区一区三区mba视频| 亚洲精品一区在线观看| 国产视频911| 国产在线精品一区二区夜色| 精品久久人人做人人爰| 亚洲一区二区三区四区在线免费观看| 国产91露脸合集magnet| 欧美日韩你懂得| 久久婷婷国产综合国色天香| 日韩国产精品久久| 欧美综合色免费| 一区二区三区**美女毛片| 国产风韵犹存在线视精品| a级高清视频欧美日韩| 337p亚洲精品色噜噜噜| 一区二区三区在线观看动漫| 欧美日韩一级视频| 欧美v日韩v国产v| 欧美日韩在线三级| 亚洲h精品动漫在线观看| 欧美另类变人与禽xxxxx| 中文字幕高清一区| 懂色av中文一区二区三区| 久久久午夜精品理论片中文字幕| 日韩电影一区二区三区四区| 亚洲精品乱码久久久久久黑人| 成人免费看片app下载| 欧美日韩大陆一区二区| 欧美激情在线一区二区三区| 国产成人亚洲精品青草天美| 国产欧美日韩不卡| 日韩手机在线导航| 精品欧美黑人一区二区三区| 欧美视频一区二区三区四区 | 4438x亚洲最大成人网| 99这里都是精品| 免费高清视频精品| 久久疯狂做爰流白浆xx| 亚洲图片欧美一区| 日本在线不卡视频一二三区| 亚洲激情图片一区| 亚洲一区二区三区四区不卡| 99国产精品久久久久久久久久久| 欧美一区二区三区喷汁尤物| 亚洲乱码国产乱码精品精可以看| 3atv在线一区二区三区| 欧美福利视频导航| 97se亚洲国产综合自在线观| 视频一区免费在线观看| 日韩理论片网站| 成人白浆超碰人人人人| 日韩免费观看高清完整版| 欧美一级黄色片| 欧美精品xxxxbbbb| 欧美一二三区在线观看| 日韩精品一区二区三区视频播放 | 亚洲色欲色欲www| 日韩亚洲欧美在线| 国产一区二区在线观看视频| 亚洲视频免费看| 午夜电影网一区| 国产91精品一区二区麻豆亚洲| 秋霞午夜av一区二区三区| 国产呦精品一区二区三区网站| 成人福利视频网站| 国产麻豆精品在线| 日韩欧美国产综合在线一区二区三区| www精品美女久久久tv| 午夜精品免费在线| 欧美亚一区二区| 一区二区三区四区中文字幕| 亚洲一区二区三区美女| 国产乱一区二区| 欧美经典一区二区| 免费成人在线视频观看| 欧美一级艳片视频免费观看| 亚洲一区二区三区小说| 国产99久久久国产精品潘金| 欧美日韩一区二区电影| 日本亚洲最大的色成网站www| 欧美日韩免费高清一区色橹橹 | 国产精品乱人伦| 欧美写真视频网站| 国产在线播放一区| 丝袜美腿亚洲色图| 中文字幕日本乱码精品影院| aaa国产一区| 成人免费观看男女羞羞视频| 麻豆精品一区二区av白丝在线| 欧美色精品天天在线观看视频| 91在线国产福利| 天堂一区二区在线免费观看| 精品国产一区二区精华| 国产一区二区三区免费在线观看| 国产亚洲欧美日韩日本| 色中色一区二区| a亚洲天堂av| 韩国欧美国产1区| 亚洲成年人影院| 亚洲国产中文字幕| 国产精品污www在线观看| 日韩视频一区二区在线观看| 欧美日韩国产一区| 99r国产精品| 东方aⅴ免费观看久久av| 蜜桃精品视频在线|