What does the following snippet of code do?
Game -> set background scene (‘’horizontal”, Cityscape)
What is creates a background image which moves horizontally on the screen
100
What are the coordinates of point C in Touch Develop?
What is 800, 400
100
Which of the following is the best description of what the ON EVERY FRAME code does?
What is Prints a message every five seconds
100
When the screen is tapped what happens in the following code segment?
What is Add score (100)
100
which line of code will display an introductory screen that says hello
What is Game splash hello
200
What does this snippet of code do?
Game -> splash (“here we go !’’)
What is creates an intro screen with text “here we go!’’ displayed
200
What are the coordinates of point B in Touch Develop?
What is 800, 0
200
Which term refers to a program construct that allows for a block of code to be repeated multiple times?
What is Loop
200
What happens in the following block of code?
What is If monster goes off to of the screen, player loses 1 life. If monster goes off the sides of the screen score is plus 10
200
What is latency?
What is transmission capacity
300
What is the output of the following function:
Function drawing ()
For o < I < 5 do
Turtle-> forward (100)
Turtle -> left turn (72)
What is a hexagon
300
Which line of code sets the variable, Hero, to the robot picture?
Var hero := board – create picture( robot)
Hero – set pos (400, 200)
Hero – set width(100)
Hero set acceleration y(400)
What is Hero – set pos (400, 200)
300
The code tells how to react to an event known as the
What is Function
300
Complete the custom function below, draw square, which draws a square whose size is determined by the parameter passed to it.
What is S:picture
300
what is the purpose of the sprite sheet-> set frame grid (6, 1, 0 , 0, 0, 0, 0, 0) function in touch develop?
What is To set the frames as a rectangular grid and specify the number
400
A sprite that is 100 pixels wide and 200 pixels high is placed on the screen. After entering the following code, what are the dimensions of the sprite
What is Width: 50 Height: 100
400
The basic unit of programmable color on a computer display or in a computer image is a logical unit known as a?
What is Pixel
400
Which statement is true about events in Touch Develop?
What is Multiple events can run at the same time
400
which statement defines a for loop
What is A program construct that allows for a block of code to be executed a specified number of times.
400
How are spite sheets used in touch develop?
What is To create frame based animations
500
Which line of code sets the parameters for the size of the hero?
What is Hero – set width(100)
500
In computer science, the process of breaking a complex problem or system into parts that are easier to conceive, understand, program and maintain is known as?
What is Decomposition
500
Events can be user actions such as mouse clicks or key presses.
What is True
500
which statement defines a loop counter?
The variable used to determine the number of times the loop will execute
What is The variable used to determine the number of times the loop will execute
500
Which statement defines a loop counter?
What is The variable used in a for loop to determine the number of times the loop will execute