0
0
Firebasecloud~5 mins

First Firebase integration - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Firebase in simple terms?
Firebase is a set of tools from Google that helps you build apps quickly. It provides services like storing data, user login, and hosting without needing your own servers.
Click to reveal answer
beginner
What is the first step to integrate Firebase into a web app?
The first step is to create a Firebase project in the Firebase console and then add your app to that project to get the configuration details.
Click to reveal answer
beginner
What is the purpose of the Firebase config object in your app?
The Firebase config object contains keys and identifiers that connect your app to your Firebase project, allowing your app to use Firebase services.
Click to reveal answer
beginner
How do you initialize Firebase in a JavaScript app?
You import Firebase libraries and call the initialization function with your config object, which sets up Firebase services for your app.
Click to reveal answer
intermediate
Why is it important to keep Firebase config keys safe even though they are public?
While Firebase config keys are not secret, you should still protect your Firebase rules and backend to prevent unauthorized access or misuse of your data.
Click to reveal answer
What is the first thing you do to start using Firebase in your app?
ABuy a server
BWrite your app code first
CCreate a Firebase project in the Firebase console
DInstall a database manually
Which of these is part of the Firebase config object?
AAPI key
BUser password
CServer IP address
DDatabase schema
How do you add Firebase to a web app?
AInclude Firebase scripts and initialize with config
BInstall Firebase on your computer
CWrite Firebase code in HTML only
DUse Firebase without any setup
Why should you set Firebase security rules?
ATo reduce Firebase costs
BTo speed up your app
CTo make your app look better
DTo control who can read and write your data
Which Firebase service helps with user login?
AFirebase Analytics
BFirebase Authentication
CFirebase Storage
DFirebase Hosting
Explain the steps to integrate Firebase into a new web app.
Think about what you do first in the Firebase console and then in your app code.
You got /5 concepts.
    Describe why Firebase config keys are needed and how to keep your app secure.
    Consider the role of config keys and the importance of security rules.
    You got /5 concepts.