Skip to main content

Knowledge Check: Managing Your Billing Account


Link to the Video: https://youtu.be/r3QsI5FHcgU 

The ones that are in bold and in yellow are the answers

1. In the context of Google Cloud Platform, which of the following best describes a resource? Select the correct answer.

Individual users assigned to a project.

Budget you’d need to pay for services consumed.

Analytics capabilities for sorting through large volumes of data.

Any Google Cloud Platform service, such as Compute Engine or BigQuery.

 

2.Once a Billing Account is created for an organization, when a user creates a project, ownership of the project is automatically assigned to the individual user.

 

3.To ensure a reasonable level of redundancy for your billing account, which best practices should you consider following? Select the two correct answers.

a   Grant Billing Admin roles to a Google group or, at a minimum, to two individual Billing Account Admins.

a   Regularly check that there are at least 2 active Billing Account Admins assigned to a Billing Account.

   Back up or archive past invoice files.

   Choose multiple currencies for your billing account.

 

4.

Billing Account Users can see budget spend, unlink projects, and enable billing export.

 

5. To ensure that Billing Account Admins have access to all of your organization’s billing data in the future for performing deeper data analysis, what task must they complete immediately after setting up a billing account? Select the correct answer.

Enable BigQuery export

Hire a Financial Analyst

Set billing data permissions

Download a CSV file daily

 

6. In the context of an Enterprise company, resources should be managed under which top-level node in the resource hierarchy? Select the correct answer.

Payments profile

Folders

Organization

Buckets

 

7. How many currencies can a single Billing Account be associated with? Select the correct answer.

1

2

up to 5

as many as needed

 

8. Where can you find the breakdown of your GCP costs by project, product, and SKU with forecasted costs and a trend line in one place? Select the correct answer.

Online Summary statement

Billing reports in the GCP Console

In your invoice.

Within the billing account.

 

9. What is the function of the Payments Profile? Select the correct answer.

 A Google-level resource that sits outside of Google Cloud, linked to the Billing Account, and used to manage payment details for several Google Enterprise services.

A GCP-level resource that sits within a Domain and is linked to the Billing Account.

To store the monthly invoices.

Used by Billing Account Admins to make monthly payments to Google.

 

10.It is recommended that you set up only one Billing Account for your organization. In which two cases might you need more than one Billing Account? Select the two correct answers.

a   To split GCP charges for legal or accounting reasons.

a   To pay invoices in multiple currencies.

   To separate costs by resource type.

   To match your organization’s team structure.

   To separate costs by project type.


11. What Once a billing account is created for an organization, when a user creates a project, who is ownership of the project automatically assigned to?

 Organization

Individual User


12Billing account admins are able to perform certain activities that a Billing Account User cannot. Select TWO activities that only a Billing Account Admin can perform.

a   Enable billing export

a   Unlink projects associated with a Billing Account

   View budget spend

   Link projects associated with a Billing Account


Comments

Popular posts from this blog

A Tour of Google Cloud Hands-on Labs [GSP282]

Link to the Lab:  https://www.cloudskillsboost.google/focuses/2794?parent=catalog Link to the Video:  https://youtu.be/KFjyI-o60W8 Link to the Channel:  https://www.youtube.com/channel/UCiWP5KYh4MWj-yp3j-DMIrA Answers are marked bold and are highlighted in light yellow This builds a temporary environment in Google Cloud. Start lab (button) Credit Time Score When the timer reaches 00:00:00, you will lose access to your temporary Google Cloud environment. False True Some labs have tracking, which scores your completion of hands-on lab activities. False True In order to receive completion credit for a lab that has tracking, you must complete the required hands-on lab activities. False True What field is NOT found in the left pane? Project ID System admin Password Open Google Console The username in the left panel, which resembles googlexxxxxx_student@qwiklabs.net, is a Cloud IAM identity. True False An organizing entity for anything you build with Google Cloud. Password...

Insights from Data with BigQuery: Challenge Lab [GSP787]

Link to the Lab:  https://www.cloudskillsboost.google/focuses/11988?parent=catalog Link to the Video:  https://youtu.be/jdZd834oysE Link to the Channel:  https://www.youtube.com/channel/UCiWP5KYh4MWj-yp3j-DMIrA STEPS 1.     In the Cloud Console, navigate to Menu > BigQuery . 2.     Click + ADD DATA > Explore public datasets from the left pane. 3.     Search covid19_open_data and then select COVID-19 Open Data 4.     Use Filter to locate the table covid19_open_data under the covid19_open_data dataset. Query 1: Total Confirmed Cases SELECT    SUM ( cumulative_confirmed ) AS total_cases_worldwide FROM    `bigquery-public-data.covid19_open_data.covid19_open_data` WHERE    date = "2020-04-15" Query 2: Worst Affected Areas with deaths_by_states as ( SELECT subregion1_name as state, sum ( cumulative_deceased ) as death_count FROM `bigquery-public-data.covid19_open_data.covid19_open_da...

Deploy and Manage Cloud Environments with Google Cloud: Challenge Lab [GSP314]

Link to the Lab:  https://google.qwiklabs.com/focuses/10417?parent=catalog Link to the youtube video:  https://youtu.be/eraSK1T45Do Link to my youtube channel:  https://www.youtube.com/channel/UCiWP5KYh4MWj-yp3j-DMIrA   DO NOT START WITHOUT LAB RESOURCES! DO NOT MAKE HASTE. COPY PASTE STEP BY STEP OTHERWISE IT WILL NOT WORK. TASK 1: GO TO COMPUTE ENGINE > VM INSTANCES > OPEN SSH OF kraken-jumphost TYPE THE COMMANDS IN SSH: cd /work/dm sed -i s/SET_REGION/us-east1/g prod-network.yaml gcloud deployment-manager deployments create prod-network --config=prod-network.yaml gcloud config set compute/zone us-east1-b gcloud container clusters create kraken-prod --num-nodes 2 --network kraken-prod-vpc --subnetwork kraken-prod-subnet --zone us-east1-b gcloud container clusters get-credentials kraken-prod cd /work/k8s for F in $(ls *.yaml); do kubectl create -f $F; done