Recall & Review
beginner
What is local data in mobile apps?
Local data is information stored directly on the device, like files or databases, so the app can access it without needing the internet.
Click to reveal answer
beginner
How does local data help apps work offline?
By saving data on the device, apps can show content and let users interact even when there is no internet connection.Click to reveal answer
intermediate
Name two common ways iOS apps store local data.
iOS apps often use UserDefaults for small settings and Core Data or files for larger or structured data.
Click to reveal answer
intermediate
Why is syncing important when using local data for offline use?
Syncing updates the local data with the server when the internet is back, keeping information current and consistent.
Click to reveal answer
beginner
What happens if an app only uses online data without local storage?
The app will not work without internet, causing frustration if the connection is slow or lost.
Click to reveal answer
What is the main benefit of storing data locally on a mobile device?
✗ Incorrect
Local data lets the app access information anytime, even offline.
Which iOS feature is commonly used for small local data storage?
✗ Incorrect
UserDefaults stores simple settings and small pieces of data locally.
What must happen when the device reconnects to the internet after offline use?
✗ Incorrect
Syncing updates local changes to the server to keep data consistent.
If an app does not store data locally, what is a likely problem?
✗ Incorrect
Without local data, the app depends fully on internet access.
Which of these is NOT a reason to use local data?
✗ Incorrect
Local data reduces dependency on internet, not increases it.
Explain how local data storage enables an app to function offline.
Think about what happens when you lose internet but still use the app.
You got /3 concepts.
Describe the role of syncing local data with the server after reconnecting to the internet.
Consider why the app needs to communicate with the server again.
You got /3 concepts.