What environmental elements could you modify to increase the difficulty of your game?

What will be an ideal response?

You should consider a wide variety of environmental elements that may be modified to increase the difficulty of their games. A sub-set of these elements includes: enemies (larger, more, smarter); in-game items (variety, quantity, point value); obstacles (props, vehicles, walls, doors, structures); and movement/physics (restricted, complexity, style). After separately looking at each element that already exists in their games, students should discuss what adjustments they could make to each of them – and how these adjustments could increase difficulty without making the game impossible to play.

Computer Science & Information Technology

You might also like to view...

The primary purpose of ________ software is to help the computer system monitor itself in order to function efficiently.

A. system B. application C. input D. memory

Computer Science & Information Technology

Fill in the code to complete the following method for checking whether a string is a palindrome.

``` public static boolean isPalindrome(String s) { if (s.length() <= 1) // Base case return true; else if _____________________________ return false; else return isPalindrome(s.substring(1, s.length() - 1)); } ``` a. (s.charAt(0) != s.charAt(s.length() - 1)) // Base case b. (s.charAt(0) != s.charAt(s.length())) // Base case c. (s.charAt(1) != s.charAt(s.length() - 1)) // Base case d. (s.charAt(1) != s.charAt(s.length())) // Base case

Computer Science & Information Technology