Difference between revisions of "Section D 2017"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Improvements)
Line 18: Line 18:
 
# [[Foxes have a random chance to move towards the closest warren each time period]]
 
# [[Foxes have a random chance to move towards the closest warren each time period]]
 
# [[If a fox eats more food than it needs its reproduction rate/coefficient increases]]
 
# [[If a fox eats more food than it needs its reproduction rate/coefficient increases]]
 +
# [[If a rabbit is contained within a warren, create a den class for foxes]]
  
 
=Extension of the Skeleton Program=
 
=Extension of the Skeleton Program=
 
One question is likely to focus on adding new features and functionality to the program. With the skeleton program and the way it is written this is likely to be to create another prey animal for the fox. This section will document how to achieve this. Other extensions will also be covered over time.
 
One question is likely to focus on adding new features and functionality to the program. With the skeleton program and the way it is written this is likely to be to create another prey animal for the fox. This section will document how to achieve this. Other extensions will also be covered over time.

Revision as of 09:49, 16 February 2017

Introduction

You are advised to spend no more than 70 minutes on this section. Questions will use the Skeleton Program and the Preliminary Material.

This page will identify some of the alterations / improvements that can be made to the skeleton program. It is important to explain what problem the alteration is tackling, and explain how to make the improvement itself.

Improvements

  1. Add the code to allow foxes to have a gender
  2. Make the probability of a rabbit dying increase with age, ie extra 5% per term
  3. Reduce the reproductive rate of a rabbit with age
  4. Add a way for a disease to kill rabbits in warrens
  5. Implementing weather changes that affect animals
  6. Storm or fire affects number of animals in a certain radius
  7. Validation for menu options for the coordinate input
  8. Constraints for number of animals placed (when option two is selected)
  9. Display a message when a cell with no fox is selected for fox inspection...Adding a loop too
  10. Display a message when a cell with no warren is selected for warren inspection...Adding a loop too
  11. A fox moves in a random direction if they haven't eaten enough food that turn
  12. Foxes have a random chance to move towards the closest warren each time period
  13. If a fox eats more food than it needs its reproduction rate/coefficient increases
  14. If a rabbit is contained within a warren, create a den class for foxes

Extension of the Skeleton Program

One question is likely to focus on adding new features and functionality to the program. With the skeleton program and the way it is written this is likely to be to create another prey animal for the fox. This section will document how to achieve this. Other extensions will also be covered over time.