Final course quiz: React Native :React Native (Meta React Native Specialization) Answers 2025
1. Question 1
By building apps using React Native, your job title would be:
-
✔️ Cross-platform Mobile Developer
-
❌ Android Developer
-
❌ Web Developer
-
❌ Native Mobile Developer
2. Question 2
Expo CLI requires no native tools?
-
✔️ True
-
❌ False
3. Question 3
Method to trigger alert when TextInput becomes focused:
-
✔️ focus()
-
❌ isFocused()
-
❌ blur()
4. Question 4
Component used to render sorted sections:
-
✔️ SectionList
-
❌ View
-
❌ FlatList
5. Question 5
Hooks in core React Native:
-
❌ useDeviceOrientation
-
❌ useKeyboard
-
✔️ useWindowDimensions
-
✔️ useColorScheme
(Core RN provides only these two.)
6. Question 6
resizeMode that scales uniformly but fits inside container:
-
✔️ contain
-
❌ stretch
-
❌ cover
-
❌ repeat
7. Question 7
Triggered when finger is lifted:
-
✔️ onPressOut
-
❌ onPressIn
-
❌ onPress
-
❌ onLongPress
8. Question 8
React Navigation minimum requirements:
-
✔️ react-native >= 0.63.0 and expo >= 41 (if using Expo)
-
❌ >= 0.56.0
-
❌ >= 0.70.0
9. Question 9
Cross-platform keyboard types:
-
✔️ visible-password
-
✔️ numeric
-
✔️ url
-
❌ decimal-pad (iOS only — not cross-platform)
10. Question 10
Navigation setup code is:
-
✔️ The code is valid.
-
❌ Incorrect
📘 Summary Table
| Q | Correct Answer | ✔️ |
|---|---|---|
| 1 | Cross-platform Mobile Developer | ✔️ |
| 2 | True | ✔️ |
| 3 | focus() | ✔️ |
| 4 | SectionList | ✔️ |
| 5 | useWindowDimensions, useColorScheme | ✔️ |
| 6 | contain | ✔️ |
| 7 | onPressOut | ✔️ |
| 8 | RN ≥ 0.63.0, Expo ≥ 41 | ✔️ |
| 9 | visible-password, numeric, url | ✔️ |
| 10 | Code is valid | ✔️ |