Alright so I'm back again with another question. In regards to the 8 mark questions should I be looking to create a single solution that covers all of the requirements or are separate solutions that solve each okay? So far I've been splitting up the issues and providing solutions to them individually. For instance in the attached question for the second dot point I avoided the issue of dealing with the 3 months by suggesting that he just have a spreadsheet that holds the 3 months of data and no more.
(Image removed from quote.)
Thanks for the help guys.
Pretty poorly worded question, in my opinion.
Regardless, ignore the "3 month" stuff. VCAA have used it many times throughout this study design, e.g. Find the highest selling product over the last 3 months. Answer: Sort Quantity sold in Descending order. (1 mark for Sort-Descending, and 1 mark for Quantity sold)
Onto that question, your approach should not be to talk about an entire solution, rather, you should just address the specific points. Subheadings are best.
e.g.
Country of origin: Sort country of origin field in Ascending order, this will return a list of snowboarders such as, Australia, Canada, Finland etc.
Who placed first: If statement to check Placing data. IF(Placing=1,15% Bonus, No bonus)
Haven't placed highly: Sort placing data in Descending order, this will put the snowboarders with the lowest placings at the top of the list.
Graph payments: Create a column graph comparing the payments of each snowboarder for the year.
The problem with the wording of the question is that two of the points tell you what function to use.
Point 1- Sort and Point 4- Graph
Point 3 is too vague. Better wording would ask you to find the lowest (or lowest 2/3/4/5) placed racer in a particular race, in which case sorting would work nicely.
Point 2 is the best written point, but it's still quite difficult to write about how you would do it.
If you want to make another attempt at the question, here's a reworked version:
ProGo is a travel company that sponsors competitive snowboarders. They want to develop an information system that allows them to monitor the snowboarders they sponsor and their payments to them. Specifically, they want to be able to:
- find all snowboarders from Canada
- review sales trends for each snowboarder's merchandise
- find the 5 snowboarders whose merchandise has been the highest selling
- find the total attendance of the last 5 events
Further to that, show test data for each of those functions. (It would now be a 16 mark question which is not practical. But it's unlikely you'd see 8 marks assigned to only functions - test data has been included in all similar VCAA questions)