You are creating a calculator app. The Power function must calculate the result of raising a number by a positive exponent value.
You create the following pseudocode:
Function Power(number, exponent)
DECLARE result
End Function
You need to complete the pseudocode for the function.
Which pseudocode should you use?
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?
This question requires that you evaluate the underlined text to determine if it is correct.
Information travels across the Internet in small segments of data known as bits.
Review the underlined text. If it makes the statement correct, select "No change is needed." If the statement is incorrect, select the answer choice that makes the statement correct.
You work as a game developer at Tailspin Toys.
Your colleague created a script to display an animation using the following sprite sheet and Touch Develop code.
Your coding team is creating a weather app. The application must allow the user to input a wind speed and see if the storm is a hurricane. If the storm is a hurricane, the app should also determine which category of storm it is on the Saffir-Simpson Hurricane Wind Scale.
The Saffir-Simpson Hurricane Wind Scale is defined as follows:
Category 1 is 74-95 MPH
Category 2 is 96-110 MPH
Category 3 is 111 to 129MPH
Category 4 is 130-156 MPH
Category 5 is 157 MPH and above
Four team members have proposed pseudocode to meet this requirement.
Which pseudocode is in the appropriate logical order?
This question requires that you evaluate the underlined text to determine if it is correct.
You are writing an app for Best For You Organics Company.
The app needs to allow the user to convert a recipe from cups to liters. The app will use the conversion ratio of 1 cup is equal to 0.2366 liters.
You define the pseudocode as follows:
INPUT cups
liters = cups * 0.2366
OUTPUT liters
Review the underlined text. If it makes the statement correct, select "No change is needed." If the statement is incorrect, select the answer choice that makes the
statement correct.