<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<title>Re: [Year 12 SofDev] SD Exam - Question 4</title>
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-AU link=blue vlink=purple>

<div class=WordSection1>

<p class=MsoNormal><span style='color:#1F497D'>That&#8217;s how my students read it
and I agree.<o:p></o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'>Laurie<o:p></o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'> sofdev-bounces@edulists.com.au
[mailto:sofdev-bounces@edulists.com.au] <b>On Behalf Of </b>Andrew Shortell<br>
<b>Sent:</b> Wednesday, 17 November 2010 1:45 PM<br>
<b>To:</b> Year 12 Software Development Teachers' Mailing List<br>
<b>Subject:</b> Re: [Year 12 SofDev] SD Exam - Question 4<o:p></o:p></span></p>

</div>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'><span style='font-size:11.0pt;
font-family:"Calibri","sans-serif"'>Null &nbsp;- if there is nothing then what
is the point in proceeding further<br>
Type &#8211; if there is other than numbers then no point in doing any other checks<br>
Length &#8211; no point in checking the database if there is incorrect number of
digits<br>
Existence &#8211; checking the database is a significant step which goes outside of
the current program to an external source<br>
<br>
I have not yet seen the exam.. It is not offered here but as a teacher of
IS/SoD for a few years and lectured to 3rd year programmers this is how I would
approach it.<br>
<br>
Effectiveness in terms of why go to the next step when it has failed a step...<br>
It would be pretty silly to put it in the reverse order would n&#8217;t it...<br>
Check against the database before you even know if anything has been entered?
Etc<br>
<br>
Andrew<br>
<br>
<br>
-- <br>
Andrew Shortell <br>
(soon to leave Wallan SC)<br>
<br>
<br>
<br>
On 17/11/10 1:10 PM, &quot;Mark KELLY&quot; &lt;<a
href="kel@mckinnonsc.vic.edu.au">kel@mckinnonsc.vic.edu.au</a>&gt; wrote:</span><o:p></o:p></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif"'>Hi
all.&nbsp; I've started getting a bee in my bonnet (or a terrier in my
trousers) about Section C, Q4.<br>
<br>
<i>Percy is writing the program specification. For the section dealing with
entry of the Medicare number he writes<br>
<br>
If the user makes a mistake entering the Medicare number, the program has to
provide as much information as possible about what is wrong. Therefore include these
validation tests.<br>
Length - to make sure that the correct number of characters has been entered<br>
Existence - to make sure that the number entered exists on Medicare's database<br>
Null - to make sure something has been entered<br>
Type - to make sure that only numeric characters have been entered<br>
Note: These tests must be performed in the most effective order.<br>
<br>
a. Place these validation tests in the most effective order. 1 mark<br>
<br>
Then students have to give 3 reasons why it's the most effective way of doing
those tests. (3 marks)<br>
<br>
</i><br>
Hmm. What is &quot;effective&quot; about the order? It must relate to <b>how
well</b> it does the job of finding invalid numbers.<br>
<br>
But if <b>all 4 tests</b> are going to be conducted, any order of the 4 tests
will yield <b>exactly the same</b> results.<br>
<br>
It might be different if we wanted to find invalid numbers <b>soonest,</b> or
with the <b>minimum number of tests</b>, but they are <b>efficiency</b>
criteria, not effectiveness.<br>
<br>
I'm seriously starting to believe that this is a Bull Mastiff of a question...
All orders must be equally effective.<br>
<br>
I can usually work out what the examiners were <i>probably</i> trying to get
at, but this one has me completely baffled (like multichoice Q3 on the ITA
paper).&nbsp; <br>
I have no idea whatsoever of what knowledge the examiners are hoping I will
show.<br>
<br>
So, can anyone please tell me:<br>
<br>
1. how one order can be <i>more effective</i> than another.<br>
2. what order is most effective, and why the <i>reverse order</i> would be less
effective!<br>
<br>
Growl.<br>
<br>
Mark</span><o:p></o:p></p>

</div>

<p></p><p><b>Important - </b>This email and any attachments may be confidential. If received in error, please contact us and delete all copies. Before opening or using attachments check them for viruses and defects. Regardless of any loss, damage or consequence, whether caused by the negligence of the sender or not, resulting directly or indirectly from the use of any attached files our liability is limited to resupplying any affected attachments. Any representations or opinions expressed are those of the individual sender, and not necessarily those of the Department of Education and Early Childhood Development.</p>
</body>

</html>