HOTSPOT
You are writing a function to return a value from the following sequence: 3, 6, 12, 24, 48,
96, 192, etc.
You must create a function that will accept a parameter N and return the value at the Nth position in the sequence. For example, if N is 4, the value 24 should be returned.
You need to complete the algorithm to find the Nth number in the sequence. To answer, select the appropriate pseudocode segments in the answer area.
NOTE: Each correct selection is worth one point.


DRAG DROP
You are creating a Touch Develop app.
Which library would you use to access each function? To answer, drag the appropriate library from the column on the left to the function on the right. Each library may be used once, more than once, or not at all.
NOTE: Each correct selection is worth one point.


HOTSPOT
What are the principles of user experience design?
For each of the following statements, select Yes if the statement is true. Otherwise, select
No.


DRAG DROP
You are teaching your friends how to choose a secure password by showing them a few examples.
Analyze the passwords and rank them in the order of the least secure to the most secure.
To answer, drag the appropriate password to the correct position. Each password must be used once and only once. You may need to drag the split bar between panes or scroll to view content.


HOTSPOT
Which statements correctly describes libraries? For each of the following statements, select
Yes if the statement is true. Otherwise, select No.


HOTSPOT
The code in the following exhibit calls the GetSprites function to return a Sprite Set object.

How can you add code that retrieves the fourth sprite from the Sprite Set object? To answer, select the appropriate function or operator in the answer area.


HOTSPOT
You are building a treasure hunt game.
When the player opens a treasure box, a random prize might be awarded with the following probabilities:
*
Gold Prize 2%
*
Silver Prize 5%
*
Bronze Prize 20%
You are designing an algorithm to decide the prize using the random function. The random(limit) function returns a random integer between 1 and limit, including limit. For example, if the limit is 20, the function returns a value between 1 and 20.


Humberto wants to create a Touch Develop game that he can play with his friends competing for the highest score. Because Humberto's friends live out of state, he needs to create a game that can be played on different devices with each player's score being saved and compared to the other friend's scores. He needs help determining the right type of variable to store the highest player's score for use in his game.
You need to give Humberto advice on the correct type of variable he needs to create for his game.
Which variable type should you recommend?