Courseiva
Back to Google Cloud Generative AI Leader Generative AI Leader questions

Scenario-based practice

Refer to the Exhibit Practice Questions

Practise Google Cloud Generative AI Leader Generative AI Leader practice questions — original exam-style scenarios covering every exam domain, with detailed explanations, wrong-answer analysis, and common exam traps.

12
scenario questions
Generative AI Leader
exam code
Google Cloud
vendor

Scenario guide

How to approach refer to the exhibit practice questions

Practise exhibit-style questions that ask you to read a topology, table, command output or diagram before choosing the best answer.

Quick answer

Exhibit-style questions test whether you can read a topology, command output, diagram or table before choosing the best answer.

How to extract the relevant detail from an exhibit.

How topology, command output or routing information affects the answer.

How to avoid answering from memory before reading the evidence.

How to map the exhibit back to the exam objective.

Related practice questions

Related Generative AI Leader topic practice pages

Scenario questions usually connect to one or more exam topics. Use these links to review the underlying concepts behind the scenario.

Practice set

Practice scenarios

Question 1mediummultiple choice
Full question →

Refer to the exhibit. The endpoint is experiencing high latency during traffic spikes. The team wants to improve response time by reducing queueing. Which change to the configuration would be most effective?

Exhibit

Refer to the exhibit.

```
# Vertex AI Endpoint configuration
{
  "model": "gemini-1.5-pro",
  "endpoint": "projects/my-project/locations/us-central1/endpoints/123456789",
  "deployedModel": {
    "modelVersion": "1",
    "minReplicaCount": 1,
    "maxReplicaCount": 5,
    "autoscalingMetricSpecs": [
      {
        "metricName": "custom.googleapis.com|genai|request_count",
        "target": 100
      }
    ]
  }
}
```
Question 2easymultiple choice
Full question →

The exhibit shows a command to deploy a model to a Vertex AI endpoint with GPU. The deployment fails due to a resource constraint. What is the most likely reason?

Exhibit

Refer to the exhibit.
```
Deploying a model to Vertex AI Endpoint with GPU:
$ gcloud ai endpoints deploy-model $ENDPOINT_ID \
  --model=$MODEL_ID \
  --machine-type=n1-standard-4 \
  --accelerator=count=1,type=nvidia-tesla-t4 \
  --min-replica-count=2 \
  --max-replica-count=5
```
Question 3hardmultiple choice
Full question →

The exhibit shows the deployment configuration for a conversational AI model used in a finance application. Users report that responses are creative but often contain factually incorrect financial advice. Which parameter change would most improve factual accuracy?

Exhibit

Refer to the exhibit.

```json
{
  "model": "publishers/google/models/chat-bison@001",
  "endpoint": "us-central1-aiplatform.googleapis.com",
  "parameters": {
    "temperature": 0.9,
    "topP": 0.95,
    "maxOutputTokens": 256,
    "groundingConfig": {
      "sources": []
    }
  },
  "deployment": "production"
}
```
Question 4easymultiple choice
Full question →

Refer to the exhibit. A company has this IAM policy on a Vertex AI project. Alice complains she cannot create a new model. What is the most likely reason?

Exhibit

Refer to the exhibit.
```
{
  "bindings": [
    {
      "role": "roles/aiplatform.user",
      "members": ["user:alice@example.com"]
    },
    {
      "role": "roles/aiplatform.admin",
      "members": ["user:bob@example.com"]
    }
  ]
}
```
Question 5hardmultiple choice
Full question →

Refer to the exhibit. An administrator creates this IAM policy for a Vertex AI project. What is the effect of this policy?

Exhibit

{
  "bindings": [
    {
      "role": "roles/aiplatform.user",
      "members": ["user:alice@example.com"]
    },
    {
      "role": "roles/aiplatform.customCodeModelAdmin",
      "members": ["user:bob@example.com"]
    }
  ]
}
Question 6easymultiple choice
Full question →

Refer to the exhibit. A user wants formal translations from a generative AI model, but the model outputs informal style inconsistently. Which prompt engineering technique would best ensure consistent formal translations?

Exhibit

User: Translate the following sentence to French: Hello, how are you?
Model: Bonjour, comment vas-tu?
Expected: Bonjour, comment allez-vous? (formal)
Question 7mediummultiple choice
Full question →

Refer to the exhibit. A developer creates a model resource with this YAML config but gets an error that the model is not deployable. What is missing?

Exhibit

model:
  name: "projects/my-project/locations/us-central1/models/1234"
  explanation_spec:
    metadata:
      inputs:
        my_input:
          input_tensor_name: "input"
          modality: "text"
Question 8easymultiple choice
Full question →

Refer to the exhibit. What is the most likely cause of this error?

Exhibit

ERROR: (gcloud.aiplatform.models.upload) PERMISSION_DENIED: Permission 'aiplatform.models.upload' denied on resource project my-project
Question 9mediummultiple choice
Full question →

The exhibit shows the output of describing a model on Vertex AI. What does 'modelSource: MODEL_GARDEN' indicate about this model?

Exhibit

Refer to the exhibit.
```gcloud output
$ gcloud ai models describe --region=us-central1 my-model@123
Model:
  displayName: my-model
  versionId: "123"
  modelSource: MODEL_GARDEN
  supportedExportFormats:
  - id: "json"
  supportedInputStorageFormats:
  - json
  supportedOutputStorageFormats:
  - json
```
Question 10hardmultiple choice
Full question →

Refer to the exhibit. A data scientist is fine-tuning a model. The training loss and accuracy are improving each epoch. However, after training, the model performs poorly on a held-out validation set. What is the most likely issue?

Exhibit

Refer to the exhibit.
```
INFO: Training started.
INFO: Epoch 1/10 - loss: 2.3456 - accuracy: 0.1234
INFO: Epoch 2/10 - loss: 1.9876 - accuracy: 0.2345
INFO: Epoch 3/10 - loss: 1.6543 - accuracy: 0.3456
INFO: Epoch 4/10 - loss: 1.4321 - accuracy: 0.4567
INFO: Epoch 5/10 - loss: 1.2345 - accuracy: 0.5678
INFO: Epoch 6/10 - loss: 1.0987 - accuracy: 0.6789
INFO: Epoch 7/10 - loss: 0.9876 - accuracy: 0.7890
INFO: Epoch 8/10 - loss: 0.8765 - accuracy: 0.8901
INFO: Epoch 9/10 - loss: 0.7654 - accuracy: 0.9012
INFO: Epoch 10/10 - loss: 0.6543 - accuracy: 0.9123
```
Question 11easymultiple choice
Full question →

Refer to the exhibit. A user receives this error when trying to get predictions from a Vertex AI endpoint. What is the most likely cause?

Exhibit

ERROR: (gcloud.ai.platform.predict) PERMISSION_DENIED: Permission 'aiplatform.endpoints.predict' denied on resource 'projects/my-project/locations/us-central1/endpoints/123456' (or resource may not exist).
Question 12hardmultiple choice
Full question →

Refer to the exhibit. A developer receives this error when trying to call a model for prediction. What is the most likely cause?

Exhibit

{
  "error": {
    "code": 403,
    "message": "Permission 'aiplatform.models.predict' denied on resource 'projects/my-project/locations/us-central1/models/456'"
  }
}

These Generative AI Leader practice questions are part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style Generative AI Leader questions with detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics.