Cloud Digital Leader Why cloud technology is transforming business • Complete Question Bank
Complete Cloud Digital Leader Why cloud technology is transforming business question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Virtual machines (IaaS)
Unstructured object storage
Serverless data warehouse
Serverless container platform
Event-driven serverless functions
Drag a concept onto its matching description — or click a concept then click the description.
Continuous integration/continuous delivery (CI/CD)
Managed continuous delivery for applications
Store and manage container images and packages
Private Git repositories hosted on GCP
Monitoring, logging, and diagnostics suite
Refer to the exhibit.
```
$ gcloud compute instances create my-instance \
--zone=us-central1-a \
--machine-type=e2-medium \
--preemptible \
--image-family=ubuntu-2004-lts \
--image-project=ubuntu-os-cloud
```Refer to the exhibit.
```json
{
"bindings": [
{
"role": "roles/bigquery.dataEditor",
"members": [
"user:analyst@example.com"
],
"condition": {
"title": "limited_time_access",
"expression": "request.time < timestamp('2026-01-01T00:00:00Z')"
}
},
{
"role": "roles/bigquery.dataViewer",
"members": [
"user:manager@example.com"
]
}
]
}
```Refer to the exhibit.
```
$ gsutil lifecycle set lifecycle-config.json gs://my-bucket/
Content of lifecycle-config.json:
{
"rule": [
{
"action": {"type": "SetStorageClass", "storageClass": "NEARLINE"},
"condition": {
"age": 30,
"matchesStorageClass": ["STANDARD"]
}
},
{
"action": {"type": "Delete"},
"condition": {
"age": 365
}
}
]
}
```Refer to the exhibit. The following IAM policy is attached to a Cloud Storage bucket:
{
"bindings": [
{
"role": "roles/storage.objectViewer",
"members": ["user:alice@example.com"]
},
{
"role": "roles/storage.objectCreator",
"members": ["group:devs@example.com"]
}
]
}