Recall & Review
beginner
What are user properties in Firebase Analytics?
User properties are attributes you define to describe segments of your user base, like language preference or user type. They help you understand user behavior better.
Click to reveal answer
beginner
How do you set a user property in Firebase Analytics?
You use the setUserProperty method in your app code, providing a property name and value. For example, setUserProperty('favorite_color', 'blue').
Click to reveal answer
intermediate
Why should user property names be chosen carefully?
Because Firebase limits you to 25 user properties per project, and names must be clear and consistent to make analysis meaningful.
Click to reveal answer
intermediate
Can user properties be changed after they are set?
Yes, user properties can be updated anytime by calling setUserProperty again with a new value. The latest value is used in reports.
Click to reveal answer
beginner
What is the difference between user properties and events in Firebase?
User properties describe user segments and stay with the user, while events record specific actions or occurrences that happen in the app.
Click to reveal answer
What is the maximum number of user properties you can define per Firebase project?
✗ Incorrect
Firebase allows up to 25 user properties per project to keep data manageable.
Which Firebase method is used to set a user property?
✗ Incorrect
setUserProperty() is the correct method to assign user properties.
User properties in Firebase Analytics are best described as:
✗ Incorrect
User properties describe user segments, like preferences or demographics.
Can user properties be updated after initial setting?
✗ Incorrect
User properties can be updated anytime by calling setUserProperty again.
Which of the following is NOT a good practice for user property names?
✗ Incorrect
User property names should not contain spaces or special characters.
Explain what user properties are in Firebase Analytics and why they are useful.
Think about how you describe groups of users by their traits.
You got /3 concepts.
Describe how to set and update user properties in a Firebase app.
Consider the code method and when you might change a property.
You got /3 concepts.