The game maker SATs!
The game maker SATs is a test designed to test your knowledge of game maker.Think you got what it takes to get an A?
2. You generally shouldn't use what file type as sounds or music in your game? .wav (wave file) .mid (midi file) .mp3 (mp3 file) Answers 1 and 3
3. You input the code: 1+1=3. Why won't this work? Because 1+1 doesn't equal 3. Because you are telling game maker to put a value into a number instead of a variable Because GM gets mad at you for getting such an easy question wrong. It should be 3=1+1.
4. Effects...? suck. are an easy way to make cool explosions, rain, etc. without having to work with particles. Are what happens when an object collides with another. Is a TV station.
5. The main competitor of the website Games Showcase is called what? Game Maker Stuff Game Maker Programs Game Maker Guys Game Maker Games
6. GM resources that are snippets of user-inputted code are called exes. True. False.
7. What is the GM function name to get the cosine of a number? cos() cosi() cosin() cosine()
8. The creator of Game Maker's name is Mark Overmars. True False
9. An expression in GM is what? A face that GM makes at you when an error occurs What others think of your game What you put inside the parenthesis after an if statement Ther is no such thing in GM
10. The first two tutorials placed on the Official GM website were? Platform and Multiplayer Platform and Maze Multiplayer and Maze Multiplayer and 3d
11. (5*3)=? 8 2 1.6666... 15
12. (5 ter 3)=? "ter" doesn't exist in GM 555 0.555 33333
13. Which of the following produces an error? myvar=myvar myvar+=6-8 myvar=myvar+8 myvar=*10
14. How is the break statement different from the continue statement? The break statement ends a loop, but the continue statement just skips that iteration. The break statement breaks an array into 2 or more, but the continue statement does the opposite. break and continue are completely interchangable. The continue statement ends a loop, but the break statment just skips that iteration.
15. Games running in secure mode allow players to use the save game feature. True False
16. If a=true, b=a, c=b, and d=false which of the following would return TRUE? c==d !(c==b) (!c and d) c==a
17. GM is currently at version 7.0 beta. True False
18. The co-creator of Game Maker is...? Overmark Mars Bill Gates Christina Aguilera wtf? There's no co-creator of GM!
19. pen_color was eliminated in what version of GM? GM 4.2 GM 5.1 GM 6.0 GM 6.2
20. What is the proper syntax for a while loop? while (statement) expression; statement while expression; while (expression); statement; while (expression) statement;