The deadline for this unit is Friday 26th April 2013
I will mark the folders and give you a mark and final referral.
You need to be working on this over Easter if you are too meet this tight deadline.
Wednesday, 20 March 2013
Unit 6 Deadline
The deadline for unit 6 is Thursday 28th March.
I don't teach you on Thursday, so you need to either:
Hand in the folder on Wednesday afternoon
Find me on Thursday and give me the folder
Make sure that you have gone through all the corrections I have given you (which can be found on the nilpit) and completed the Evaluation. You need to check carefully against the portfolio guide if you are unsure what you are supposed to include in any particular section.
I don't teach you on Thursday, so you need to either:
Hand in the folder on Wednesday afternoon
Find me on Thursday and give me the folder
Make sure that you have gone through all the corrections I have given you (which can be found on the nilpit) and completed the Evaluation. You need to check carefully against the portfolio guide if you are unsure what you are supposed to include in any particular section.
Sunday, 3 March 2013
Work to do Monday 4th March 2013
Unfortunately I will not be in on Monday.
I need you to make a start/finish tasks 3A, 2A and 1A (hardware, software and operating systems specifications)
We also need to produce the evaluations for these 3 sections, (3B, 2B and 1B), exactly what you need to write in this section is described in the portfolio guide, make sure you read it.
Could you also all sign into workshop (click the Workshop Sign link in the Actions section of the Dashboard on the ICT intranet page)
DO NOT GO OFF AND WORK IN ANOTHER ROOM.
Hopefully I'll be in Tuesday and we can make a start on the PC setup.
I need you to make a start/finish tasks 3A, 2A and 1A (hardware, software and operating systems specifications)
We also need to produce the evaluations for these 3 sections, (3B, 2B and 1B), exactly what you need to write in this section is described in the portfolio guide, make sure you read it.
Could you also all sign into workshop (click the Workshop Sign link in the Actions section of the Dashboard on the ICT intranet page)
DO NOT GO OFF AND WORK IN ANOTHER ROOM.
Hopefully I'll be in Tuesday and we can make a start on the PC setup.
Monday, 17 December 2012
Merry Christmas: Here's is your homework
Over Christmas it is important that you complete the following work:
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.
- 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.
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.
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.
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
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
Subscribe to:
Posts (Atom)