Section D 2018

From TRCCompSci - AQA Computer Science
Revision as of 09:41, 19 January 2018 by Admin (talk | contribs) (Extensions)
Jump to: navigation, search

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. How would you increase the maximum size of a players hand
  2. If the player spells a ten or more letter word, they should receive a 200 point bonus
  3. Provide a method for the player to swap their entire hand
  4. Provide a method for the player to swap 5 random tiles from their hand
  5. If a player presses enter without typing a word it is an invalid move
  6. If a player enters a number not in the options it is treated as a word
  7. Create a method to list the words available within a given hand
  8. Allow a player to buy a vowel for 10 points
  9. Allow players to skip and end their turn
  10. Save Game Feature
  11. Alert the User if aqawords.txt File is Missing
  12. Allow players to choose the filename for LoadAllowedWords
  13. High score table feature
  14. Time limit when entering choice
  15. Ask user to confirm their word choice
  16. Bonus points at end of game for longest and highest scored words
  17. Deduct points from score if invalid word entered
  18. Display list of words (valid and invalid) used by each player at the end of the game
  19. Display the highest scored word by each player at the end of the game
  20. The player that has the letter that is closest to “A” will begin the game. A blank tile will win the start of the game
  21. In queue class definition, make use of the IsEmpty method in Show method
  22. Add the ability to set the player names
  23. CheckWordIsValid uses a linear search, program a binary search instead
  24. Allow users to check the word before they play the word

Extensions

  1. Create an automated player
  2. Wild card / blank tile added
  3. Inappropriate word filter
  4. Allow players to add new words to the game
  5. Allow players to save the new AllowedWords back into aqawords.txt