Questions
You can answer the following questions as a review of the topics in this chapter:
- Which of the following would be a good use case for FlatBuffers?
- Serializing data on an external flash
 - Sending data to a mobile application
 - Querying an I2C sensor
 - Formatting log data into JSON
 
 - There is a good amount of data to be transferred over WiFi with repeating information. Which method would help most to reduce the data size?
- Formatting into JSON by using the nlohmann/json library
 - Binary serialization with FlatBuffers
 - Using Miniz to compress data
 - Ignoring repeated information
 
 - Which of the following statements is NOT correct about the use of LVGL in a project?
- It is a GUI library so the device should have a display.
 - LVGL provides an API for input devices, such as keypads or touchscreens.
 - There is no need for a GUI designer...