diff --git a/5-retail/lessons/2-check-stock-device/README.md b/5-retail/lessons/2-check-stock-device/README.md index 595c4e8..f69a58b 100644 --- a/5-retail/lessons/2-check-stock-device/README.md +++ b/5-retail/lessons/2-check-stock-device/README.md @@ -16,6 +16,10 @@ In this lesson we'll cover: * [Retrain the model](#retrain-the-model) * [Count stock](#count-stock) +> 🗑 This is the last lesson in this project, so after completing this lesson and the assignment, don't forget to clean up your cloud services. You will need the services to complete the assignment, so make sure to complete that first. +> +> Refer to [the clean up your project guide](../../../clean-up.md) if necessary for instructions on how to do this. + ## Stock counting Object detectors can be used for stock checking, either counting stock or ensuring stock is where it should be. IoT devices with cameras can be deployed all around the store to monitor stock, starting with hot spots where having items restocked is important, such as areas where small numbers of high value items are stocked. diff --git a/6-consumer/lessons/4-multiple-language-support/README.md b/6-consumer/lessons/4-multiple-language-support/README.md index 80a8e39..09f42a9 100644 --- a/6-consumer/lessons/4-multiple-language-support/README.md +++ b/6-consumer/lessons/4-multiple-language-support/README.md @@ -24,6 +24,10 @@ In this lesson we'll cover: * [Support multiple languages in applications with translations](#support-multiple-languages-in-applications-with-translations) * [Translate text using an AI service](#translate-text-using-an-ai-service) +> 🗑 This is the last lesson in this project, so after completing this lesson and the assignment, don't forget to clean up your cloud services. You will need the services to complete the assignment, so make sure to complete that first. +> +> Refer to [the clean up your project guide](../../../clean-up.md) if necessary for instructions on how to do this. + ## Translate text Text translation has been a computer science problem that has been researched for over 70 years, and only now thanks to advances in AI and computer power is close to being solved to a point where it is almost as good as human translators. diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 8edb301..fcc7878 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -1321,6 +1321,108 @@ ] } ] + }, + { + "id": 27, + "title": "Lesson 14 - Geofences: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "GPS coordinates can be used to check if something is in a defined area", + "answerOptions": [ + { + "answerText": "True", + "isCorrect": "true" + }, + { + "answerText": "False", + "isCorrect": "false" + } + ] + }, + { + "questionText": "GPS is incredibly accurate so can indicate with precision of less than 1M when a device enters a given area", + "answerOptions": [ + { + "answerText": "True", + "isCorrect": "false" + }, + { + "answerText": "False", + "isCorrect": "true" + } + ] + }, + { + "questionText": "Geofences are useful when tracking vehicles to:", + "answerOptions": [ + { + "answerText": "Determine when a vehicle enters a given area only", + "isCorrect": "false" + }, + { + "answerText": "Determine when a vehicle leaves a given area only", + "isCorrect": "false" + }, + { + "answerText": "Determine when a vehicle enters or leaves a given area", + "isCorrect": "true" + } + ] + } + ] + }, + { + "id": 28, + "title": "Lesson 14 - Geofences: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "To have multiple services pull data from an IoT Hub, you need to create multiple:", + "answerOptions": [ + { + "answerText": "Consumer groups", + "isCorrect": "true" + }, + { + "answerText": "Pipes", + "isCorrect": "false" + }, + { + "answerText": "IoT Hubs", + "isCorrect": "false" + } + ] + }, + { + "questionText": "The default search buffer for a geofence call is:", + "answerOptions": [ + { + "answerText": "5m", + "isCorrect": "false" + }, + { + "answerText": "50m", + "isCorrect": "true" + }, + { + "answerText": "500m", + "isCorrect": "false" + } + ] + }, + { + "questionText": "Points inside the geofence have a distance:", + "answerOptions": [ + { + "answerText": "Less than 0 (a negative value)", + "isCorrect": "true" + }, + { + "answerText": "Greater than 0 (a positive value)", + "isCorrect": "false" + } + ] + } + ] } ] }