    <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
     <channel>
        <title>ACCU  :: From the Coalface</title>
        <link>https://members.accu.org/index.php/journals/1128</link>
        <description>Professionalism in Programming</description>
        <dc:language>en-us</dc:language> 
        <dc:creator>Administrator</dc:creator> 
        <admin:generatorAgent rdf:resource="http://www.xaraya.org" /> 
        <admin:errorReportsTo rdf:resource="mailto:webeditor@accu.org" />
       <sy:updatePeriod>hourly</sy:updatePeriod>
       <sy:updateFrequency>1</sy:updateFrequency>
       <docs>http://backend.userland.com/rss</docs>


        <h2>Journal Articles</h2>


<div class="xar-mod-head"><span class="xar-mod-title">CVu Journal Vol 13, #4 - Aug 2001 + Project Management</span></div>

<table border="0" cellpadding="1" cellspacing="0">
    <tbody>
    <tr>
        <td valign="top">
            Browse in :
       </td>
       <td valign="top">

                                            <a href="https://members.accu.org/index.php/journals/">All</a>

                     &gt;                         <a href="https://members.accu.org/index.php/journals/c76/">Journals</a>

                     &gt;                         <a href="https://members.accu.org/index.php/journals/c77/">CVu</a>

                     &gt;                         <a href="https://members.accu.org/index.php/journals/c119/">134</a>
                    (6)
<br />

                                            <a href="https://members.accu.org/index.php/journals/">All</a>

                     &gt;                         <a href="https://members.accu.org/index.php/journals/c13/">Topics</a>

                     &gt;                         <a href="https://members.accu.org/index.php/journals/c66/">Management</a>
                    (95)
<br />

                                            <a href="https://members.accu.org/index.php/journals/c119-66/">Any of these categories</a>

                    -                        <a href="https://members.accu.org/index.php/journals/c119+66/">All of these categories</a>
<br />
</td>
   </tr>
   </tbody>
</table>




<div class="xar-error">
   <p>
 <strong>Note:</strong> when you create a new publication type,
the articles module will automatically use the templates
<em>user-display-[publicationtype].xt</em>
and <em>user-summary-[publicationtype].xt</em>.
If those templates do not exist when you try to preview or display a new article,
you'll get this warning :-)  Please place your own templates in themes/<em>yourtheme</em>/modules/articles . The templates will get the extension .xt there. </p>
</div>
<div class="xar-norm xar-standard-box-padding">
   <h1><strong>Title:</strong>&nbsp;From the Coalface</h1>
<p><strong>Author:</strong>&nbsp;</p>
<p>
<strong>Date:</strong> 03 August 2001 13:15:46 +01:00 or Fri, 03 August 2001 13:15:46 +01:00</p>
<p><strong>Summary:</strong>&nbsp;<p>Multiple Choice Tests</p></p>
<p><strong>Body:</strong>&nbsp;<div class="sect1" lang="en">
<div class="titlepage">
<h2><a name="d0e15" id="d0e15"></a></h2>
</div>
<p>A friend of mine applied for an IT job at a large investment
bank and was asked to take an online multiple-choice 30-minute
assessment in Java programming before arrival. The security of the
assessment could have been better - besides anything else, it
seemed to rely on client-side timing - but I assume that this was
not important. I am not in the practice of doing people's homework,
but out of curiosity I did read the questions my friend sent to me,
and here are a couple (slightly modified for protection):</p>
<div class="orderedlist">
<ol type="1">
<li>
<p><tt class="literal">val</tt> is a <tt class=
"literal">static</tt> and <tt class="literal">private</tt> member
of the <tt class="literal">class Sam</tt>. Which statement could be
used to set <tt class="literal">val</tt> to 15 from anywhere in the
program?</p>
<div class="orderedlist">
<ol type="a">
<li>
<p><tt class="literal">val=15;</tt></p>
</li>
<li>
<p><tt class="literal">Sam.val=15;</tt></p>
</li>
<li>
<p><tt class="literal">setVal(15);</tt></p>
</li>
<li>
<p><tt class="literal">Sam.setVal(15);</tt></p>
</li>
<li>
<p>None of the above.</p>
</li>
</ol>
</div>
<p>Firstly, if you assume that <tt class="literal">Sam</tt> has
methods like <tt class="literal">setVal</tt> and <tt class=
"literal">getVal</tt>, that do nothing more than change val, then
what is the point of making it <tt class="literal">private</tt>?
Secondly, I hope that the assessors did not think the answer was D.
What if more than one package has a class called <tt class=
"literal">Sam</tt>? Since there was no space on the form for
justifying your answer (in fact I believe it was marked
automatically), it is anybody's guess whether or not the examiners
thought of that and whether the &quot;correct&quot; answer was D or E.</p>
</li>
<li>
<p>Which of the following is most accurate? An abstract class:</p>
<div class="orderedlist">
<ol type="a">
<li>
<p>does not inherit methods,</p>
</li>
<li>
<p>cannot be a derived class,</p>
</li>
<li>
<p>contains at least one method that is declared as abstract,</p>
</li>
<li>
<p>has no implementations for the methods it declares,</p>
</li>
<li>
<p>cannot be instantiated.</p>
</li>
</ol>
</div>
<p>This is all very well, but what exactly do they mean by
&quot;contains&quot; in answer C? If their definition of &quot;contains&quot; includes
inherited methods then both C and E are true, otherwise it's just
E. Obviously E is more likely to be the assessor's answer, but a
student should not have to figure out what the examiner meant like
this. Are they testing Java programming or the ability to do
multiple-choice questions?</p>
</li>
</ol>
</div>
<p>If you want accurate assessment then always allow students to
justify their answers and don't mark them automatically. I wonder
how many of these places are ACCU members (not many I'd
imagine).</p>
</div>
</p>
<p><strong>Notes:</strong>&nbsp;</p>
<p><em>More fields may be available via dynamicdata ..</em></p>
</div>
</channel>
</rss>
