Here are some blocks you can use to answer the questions in the quiz (you are welcome to use others including any number blocks, variable blocks, or mathematical operators.
In a URL, what does ? signify? What does & signify?
In a URL, the ? denotes the start of the parameters and the & separates the parameters. The URL https://maps.google.com/maps?saddr=39.7,-122.4&daddr=42.1,-73.9, for instance, has two parameters, one named "sadder" with value 39.7,-122.4, and one named "daddr" with value 42.1,-73.9
Sketch the blocks for an app that, as the person holding the phone moves, periodically sends a text to the numbers 111-1111 and 222-2222. The texts sent should contain:
The app should send the text when it gets a new GPS reading and the phone has moved at least 30 meters. Keep in mind that you may use any text blocks necessary.
The LocationSensor.LocationChanged event handler is triggered periodically, when the app first gets a reading and as the device is moved. By setting the DistanceInterval, you can make it so that the event is triggered only after the device is moved a certain distance (30 meters in this case).
Consider a Mole Mash game and suppose you want to keep a high score.