Module quiz: Introduction to React Native :React Native (Meta React Native Specialization) Answers 2025
1. Benefits of React Native (Select all that apply)
✔️ Cost-effective
✔️ Large community and library support
✔️ Builds cross-platform native apps
❌ Uses Swift and Kotlin
2. React Native components categories (Select all that apply)
✔️ Core Components
✔️ Community Components
✔️ Your native custom components
❌ None of the above
3. True statement about React Native
✔️ React Native is cost-effective since a single code base is shared between iOS and Android.
❌ React Native has separate code bases
4. Recommended setup for beginners
✔️ Using Expo CLI
❌ Using React Native CLI
5. Why Expo supports OTA updates?
✔️ Because all code is JavaScript and does not include native code
❌ Expo is paid and overrides app store rules
6. View component behavior
✔️ A View can be nested and can contain many children
❌ Cannot have children
7. Styles should not be abstracted away from render — True or false?
✔️ False
❌ True
8. Best job title after learning React Native
✔️ Cross-Platform Developer
❌ iOS Developer
❌ Android Developer
9. Which code snippet is cleaner & more readable?
✔️ The first code snippet (using StyleSheet)
❌ The second snippet (inline styling)
10. Correct code snippets (Select all that apply)
✔️ Snippet 1
✔️ Snippet 2
❌ Snippet 3
❌ Snippet 4
📘 Summary Table
| Q | Correct Answer |
|---|---|
| 1 | Cost-effective, community support, cross-platform |
| 2 | Core, Community, Native custom |
| 3 | Single codebase = cost-effective |
| 4 | Expo CLI |
| 5 | JS-only → OTA |
| 6 | View can be nested |
| 7 | False |
| 8 | Cross-Platform Developer |
| 9 | First snippet |
| 10 | Snippet 1, Snippet 2 |