Monday, 17 December 2012

Merry Christmas: Here's is your homework

Over Christmas it is important that you complete the following work:

  • Finish the report on Analysis tools and techniques
  • Finish the report on Design tools and techniques
  • Finish the report on investigation methods

Obviously if you have completed this work already then you will have less to do over Christmas.

Complete the first draft of the feasibility report for Bloke's Charity shop, we started this in class during this last week of term.

The work needs to be completed by Monday 7th January 2013

When we come back we will start work on the solutions to Bloke's charity shop, so you need a good idea as to what the problems are (which your feasibility report will help you identify) before you can provide solutions.

Wednesday, 21 November 2012

C# report and evaluation

Monday 26th November 2012 will be your last day in class working on the C# report and evaluation.

You need to hand in this report so I can check it. Make sure it's presentable and follows the formats from your own VB reports.

In Class we will look at the final tasks for Unit 8.

Unit 8 Reports and evaluations submission

You need to submit your final reports and evaluations for the three programs you wrote by Friday 30th November 2012.

Make sure you have looked at all the guide materials and your individual feedback.



Wednesday, 24 October 2012

Mistaken use of Select Case

When I showed you how to check multiple cases to do the same outcome I accidently used a format found in the language C#. This results in no action being taken.

Below is a short example illustrating the way I showed you and the correct way to do it.

For p = 0 To s.Length - 1
    Select Case s.Substring(p, 1).ToLower()
 
          'correct way to test for multiple cases with same outcome
          'use comma between things you want to do the same action with
          Case "a", "b", "c" : counter = counter + 1
 
          'wrong way to test for multiple cases with same outcome
          'this will not work
          Case "a" : Case "b" : Case "c" : counter = counter + 1
     
     End Select
 Next

Tuesday, 23 October 2012

Half term work

You need to complete the following work over half term.

Corrections to Program one report
Evaluation for Program one - making sure you explain the differences between first and final versions.

Final version of Program two report

Evaluation for Program one - making sure you explain the differences between first and final versions.

Draft version (but complete) of Program three report
Draft Evaluation for Program three

Thursday, 13 September 2012

Welcome

This blog is here to help you keep track of what you need to be doing during the half of the Double ICT course that I am teaching you.

We will be doing 3 units this year, this will be covered in this order:

Unit 8 : Introduction to programming
Unit 6: Software development
Unit 4: PC Configuration