GAIL Cheat Sheet
Gen AI Fundamentals
Core Gen AI Concepts
Read full chapterCheat sheet
Sharp facts the exam loves — scan these before test day.
- AI contains ML, which contains deep learning, which contains gen AI
These four terms nest, they are not rivals. Artificial intelligence is the broad field of systems that reason, learn, and act; machine learning is the subset that learns rules from data instead of being hand-programmed; deep learning is the subset of ML built on layered neural networks; and generative AI is the deep-learning family that produces new content. Every ML system is AI, but not all AI is ML.
- Generative AI creates new content; traditional ML mostly classifies or predicts
The line between generative and traditional ML is what the model outputs. Generative AI produces new artifacts such as text, images, audio, video, or code, while traditional ML typically outputs a label or a number, like a fraud flag or a churn probability. When a scenario is about producing something new rather than scoring existing data, it points to gen AI.
Trap Treating AI, ML, and generative AI as interchangeable; gen AI is one narrow branch of ML, which is itself one branch of AI.
- A foundation model is trained once and reused across many tasks
A foundation model is pre-trained a single time on a broad, massive dataset, then adapted to many downstream tasks instead of being rebuilt for each one. That train-once, adapt-many economics lets an organization buy or call one general capability and point it at many problems. It is why a leader funds access to a shared model rather than a separate model per use case.
- An LLM handles text; a multimodal model handles several data types
Foundation models are specialized by the data they work with. A large language model (LLM) is a foundation model for text, powering chat, drafting, and summarizing; a multimodal foundation model works across types at once, for example reading an image and answering about it in text. Google's Gemini models are multimodal.
Trap Assuming a text-only LLM can interpret an image or audio clip; that requires a multimodal model.
3 questions test this
- A nonprofit is building an assistive tool for visually impaired users that must accept photographs taken on a phone and respond with…
- A legal services firm needs to analyze extensive contracts and regulatory documents, some exceeding 500 pages each, while also extracting…
- A media company wants to build an AI application that can understand customer queries containing text, images, and videos, and generate…
- Diffusion models build images by refining noise
A diffusion model generates an image by starting from random visual noise and refining it step by step until it matches the prompt. Google's Imagen is a text-to-image model of this kind. This is the mechanism behind most image generation, distinct from the text prediction an LLM does.
Trap Assuming a diffusion model generates text; diffusion is the image-generation family, not a language model.
- Supervised learning needs labeled data to predict a known output
Supervised learning trains on labeled examples, each paired with its correct answer, so it can map a new input to a known output. It is the approach for classification and prediction, such as flagging fraud or forecasting churn. If there are no labels, supervised learning is not an option.
Trap Choosing unsupervised learning for a task that already has labeled target answers; a known-output prediction is a supervised problem.
6 questions test this
- A subscription business wants to predict which individual customers are likely to cancel, but its customer records contain no field…
- A real estate firm has a dataset of thousands of past property sales on Vertex AI, where each record includes features such as square…
- A manufacturer wants to automatically detect defective products on its assembly line. The quality team has assembled thousands of product…
- A utility company has five years of records in which each day is paired with the total electricity demand measured that day, along with…
- An online learning platform has 25,000 student forum posts that, over time, were each reviewed by moderators and tagged as 'question',…
- An insurance company's analytics team has 80,000 historical claims, and each claim has already been reviewed by investigators and marked as…
- Unsupervised learning finds structure in unlabeled data
Unsupervised learning works on unlabeled data to surface patterns the business never defined, such as natural customer segments or anomalies. There is no correct answer to learn toward, so the model groups or scores by similarity. Reach for it when you want to discover structure rather than predict a known label.
8 questions test this
- A telecommunications company has millions of customer usage records that contain no predefined categories or tags. The analytics team wants…
- A city transit authority has collected millions of anonymized trip records that contain no predefined tags or categories. Planners want to…
- A cybersecurity team has collected millions of network traffic logs, but none of the records are tagged as normal or malicious. The team…
- A customer experience team has thousands of open-ended survey responses with no categories assigned and wants to discover the main themes…
- A marketing analytics team has a large dataset of customer purchase histories with no predefined categories. They want to discover natural…
- A bank's marketing team has two years of customer transaction records that contain no predefined tags, categories, or outcome values. They…
- A digital news platform has a large archive of articles that carry no category labels. The editorial team wants to use Vertex AI to…
- A marketing analytics team has gathered tens of thousands of open-ended customer reviews, none of which carry any sentiment or topic tags.…
- Reinforcement learning learns from reward, not a fixed dataset
Reinforcement learning has no labeled training set; an agent takes actions in an environment and adjusts based on a reward signal that tells it which behavior pays off. It fits sequential decision problems like robotics and game play. The learning signal is the reward, earned by trial and error.
- Google groups ML into four types, adding semi-supervised
Beyond supervised, unsupervised, and reinforcement learning, Google names a fourth type: semi-supervised learning, which trains on a small amount of labeled data plus a large pool of unlabeled data. It captures much of the benefit of labels without paying to label everything. Labeling is expensive because a human usually does it, so this is partly a cost decision.
- The ML lifecycle runs ingestion, preparation, training, deployment, management
Every model, traditional or generative, moves through five stages in order: data ingestion, data preparation, model training, model deployment, and model management. Each stage has a Google Cloud tool, and Vertex AI is the unified platform spanning them. Knowing the sequence lets a leader see where time and risk accumulate.
- Most ML project effort is data work, not model training
In a real project, the bulk of the effort lands in the first two lifecycle stages, ingesting and preparing data, not the training everyone pictures. Data must be gathered, cleaned, transformed, and often labeled before a model can learn from it. Budgets and timelines should reflect that data, not the algorithm, is the long pole.
- AutoML trains a custom model on your data with minimal ML expertise
AutoML lets an organization train a high-quality custom model on its own labeled data with little effort and no data-science team, because the model-building is automated. It sits between calling a pre-trained model as-is and building a fully custom model on Vertex AI. Choose it when a generic pre-trained model is not specific enough but you lack ML engineers.
Trap Jumping to fully custom Vertex AI training when AutoML would meet the need with far less expertise and effort.
2 questions test this
- Monitor a deployed model for drift, because accuracy decays over time
Model management does not end at launch; a live model needs monitoring for drift, where the real world shifts away from the data the model was trained on and accuracy quietly falls. The Vertex AI Model Registry versions models and monitoring watches live performance. A deployed model keeps earning value only if it is watched and refreshed.
Trap Assuming a model stays accurate after deployment without monitoring; data drift degrades it silently.
- There is no single best model; choose it against the use case
Selecting a foundation model is a business decision weighed across several criteria at once: modality, context window, performance, cost per call, availability and reliability, security and governance, and whether you can fine-tune it. Optimize the whole set for the task, not one axis. The disciplined pick is the cheapest, most controllable model that clears the quality bar on your own tests.
Trap Defaulting to the largest or newest model instead of the cheapest one that clears the quality bar.
11 questions test this
- A research organization is comparing several Google foundation models for a demanding scientific question-answering task and wants to…
- An online classifieds marketplace needs to auto-generate millions of short listing descriptions every day, and the finance team has set the…
- A small nonprofit with a very limited operating budget wants to deploy a lightweight Google open model such as Gemma that it can run…
- A software company wants to embed a foundation model directly into its proprietary application and retain broad freedom to adapt, modify,…
- A wealth management firm wants to use Gemini to summarize confidential client portfolios and internal financial records. Leadership's…
- A university research lab operating on a fixed grant must run very large numbers of routine text-processing jobs, and leadership's…
- A corporate learning and development team needs a Google model that can take its written training scripts and produce finished…
- A healthcare company is selecting a foundation model for analyzing medical documents. They need to consider several factors when choosing…
- A small educational nonprofit operating on a fixed grant wants to deploy a gen AI text feature for its programs while keeping ongoing…
- A multinational manufacturer wants to adopt a Google foundation model that its teams can begin using immediately, requiring that the model…
- A government tax agency wants to use Gemini to process citizens' sensitive personal records and must ensure the model and underlying…
- A context window is how much input a model can consider at once
The context window is the amount of input a model can take into account in a single request, ranging from a paragraph to an entire book. A larger window lets the model reason over more material at once, which matters for long documents or long conversations. It is one of the core criteria when comparing models.
6 questions test this
- A publishing company is comparing foundation models for a task that requires the model to ingest and reason over an entire 900-page…
- A healthcare technology company needs to select a foundation model for analyzing lengthy medical research documents that often exceed…
- A financial services company needs to select a foundation model for analyzing lengthy regulatory documents and contracts. Their documents…
- A financial services company is selecting a foundation model for their document analysis application. They need to process lengthy…
- An architecture firm wants to use Gemini to cross-check an entire multi-thousand-page building code reference against a full project…
- A legal services firm needs to analyze extensive contracts and regulatory documents, some exceeding 500 pages each, while also extracting…
- Vertex AI Model Garden is where you compare models side by side
Vertex AI Model Garden is the catalog for comparing model options in one place: Google's first-party models such as the Gemini, Imagen, and Veo families, partner models, and open models. It is where a selection decision against modality, cost, and the other criteria actually gets made. Starting there beats defaulting to whichever model is most famous.
7 questions test this
- A retail company wants to explore generative AI for their business but does not have deep AI expertise. They need a platform that provides…
- A technology startup wants to explore different AI models for their new application but is uncertain which model will best fit their needs.…
- A technology company is evaluating foundation models in Vertex AI Model Garden for a customer service chatbot. They want to understand the…
- A global enterprise is evaluating foundation models for multiple generative AI use cases across different departments. They need a…
- A technology company needs a centralized location to discover, test, and deploy AI models from various sources for multiple projects across…
- A technology company is exploring generative AI solutions and needs to access various foundation models from multiple sources including…
- An engineering manager assumes that because his marketing team uses Gemini for Google Workspace, they can also browse and compare multiple…
- Try prompt engineering before you pay to tune a model
Prompt engineering shapes a model's output by crafting the input text, leaving the model itself frozen, so it costs nothing and iterates instantly. Clear instructions and a few examples solve a large share of cases. It is the first rung to try; escalate to tuning only when prompting cannot reach the quality or consistency you need.
Trap Reaching for fine-tuning to fix a one-off phrasing problem that a better prompt would solve at no cost.
- Fine-tuning changes the model itself for a durable but costly gain
Fine-tuning updates a model on your own labeled examples so its behavior changes durably, and it costs the most in data, time, and money of the adaptation options. Prompt tuning is a lighter middle rung that learns a small set of soft-prompt values without retraining the whole model. Move up this ladder only when the cheaper rung falls short for a domain-specific need.
2 questions test this
- Gen AI creates value by creating, summarizing, discovering, and automating
Sort every candidate use case into one of four moves. Create generates new content such as text, images, code, or video; summarize compresses long material into its essentials; discover searches messy unstructured data for insight with its sources; and automate lets agents carry out multi-step work. This vocabulary turns a vague mandate to use AI into concrete, fundable projects.
- Skip gen AI for deterministic rules or labeled structured-data prediction
Generative AI fits creating, summarizing, discovering, and automating over unstructured content, not every problem. A deterministic, rules-based task such as a tax calculation is cheaper and more reliable as ordinary software, and a structured-data prediction with a clear label is usually a job for traditional supervised ML. Match the tool to the shape of the problem.
Trap Choosing a generative model for a rules-based calculation or a structured-data prediction that conventional software or supervised ML handles better and cheaper.
- Analyzing existing records to surface trends is the data analysis use case
Data analysis is its own gen AI use case category: pointing a model at large volumes of records the business already holds, structured or unstructured, to surface patterns, trends, and anomalies and summarize the findings to guide decisions. It interprets existing data rather than producing new creative content, which is what separates it from the generation use cases.
Trap Labeling it text generation because the findings are written up, when the core work is interpreting existing data rather than creating new content.
9 questions test this
- A retail operations director needs a generative AI solution to examine large volumes of sales and inventory records, surface emerging…
- A telecommunications provider wants to use Gemini to examine large volumes of customer churn records and support call logs to surface the…
- A logistics company has years of structured shipment, route, and delivery-time records. Operations leaders want to use Gemini on Vertex AI…
- A finance operations team holds years of historical transaction and expense records and wants to detect unusual spending, surface cost…
- A retail company's customer insights team has accumulated tens of thousands of open-ended survey responses and product reviews. Leaders…
- A telecommunications provider wants to use Gemini to examine large volumes of network performance logs and customer complaint records,…
- A logistics company wants to use Gemini to examine large volumes of shipment and delivery records, surface recurring delay patterns, and…
- A retail merchandising team wants to use Gemini to examine several quarters of sales records and customer purchase histories to surface…
- A financial planning team maintains years of customer transaction records in a relational database, neatly organized into columns for date,…
- Embeddings turn content into meaning-capturing vectors for semantic search
An embedding converts text, an image, or video into a numerical vector positioned so that items with similar meaning sit close together, so measuring the distance between vectors finds semantically related content. This is what powers semantic search, matching on meaning rather than exact keywords, and multimodal embeddings place different data types in one shared space so a text query can retrieve matching images.
Trap Relying on exact keyword matching, which misses items that share meaning but not the same words.
5 questions test this
- A data scientist is explaining how embeddings work to business stakeholders. Which statement accurately describes the fundamental concept…
- A global e-commerce company wants to improve their product search experience by allowing customers to search using natural language…
- A retail company wants to build a product recommendation system that can find visually similar items to what customers are browsing, even…
- A retail company wants to improve their product search experience by allowing customers to find products using natural language…
- A fashion e-commerce platform wants to allow customers to search for products using both natural language descriptions like 'casual summer…
Data in Gen AI
Read full chapterCheat sheet
Sharp facts the exam loves — scan these before test day.
- A model's output is capped by the quality of its data
Gen AI obeys garbage in, garbage out: an answer can be no better than the data behind it, so a state-of-the-art model fed stale, incomplete, or contradictory data still returns confident but wrong answers. For a leader this reframes data readiness as a business decision that gates the use case, not a cleanup chore to delegate later.
Trap Assuming a larger or newer model will compensate for low-quality data; the model cannot exceed what its inputs contain.
- Data shapes gen AI output at both training time and run time
Data influences a gen AI system twice: the huge corpus a foundation model was pre-trained on, which you do not control, and the enterprise data you supply at run time through grounding or fine-tuning, which you do. A leader's leverage lives in the second moment, so effort and governance belong there rather than in second-guessing the training corpus.
- Judge a dataset on three axes: quality, structure, and labeling
Assess any dataset three ways, each driving a different decision: quality and accessibility decide whether it is usable at all, structure (structured, semi-structured, or unstructured) decides which tools and models fit, and labeling decides how much manual tagging a solution needs. The three axes are independent, so a dataset can score well on one and badly on another.
- Completeness means the data holds everything the task needs
Completeness asks whether a dataset contains all the information required for its intended purpose. Gaps and missing fields lead a model to skip whole cases or answer around the hole, which is why completeness is one of the core data-quality characteristics the exam calls out.
5 questions test this
- An energy company stores device sensor features in Vertex AI Feature Store to power a gen AI model that forecasts equipment maintenance…
- A university is loading historical student enrollment records into the Vertex AI Platform to train a gen AI model that drafts academic…
- A retail analytics team is preparing a customer dataset in the Vertex AI Platform to train a gen AI model that recommends products. They…
- A staffing agency is preparing applicant records on the Vertex AI Platform to train a gen AI model that drafts candidate profiles. The data…
- A telecommunications company is preparing a customer dataset in Vertex AI to build a gen AI model that drafts personalized retention…
- Consistency means the same fact has the same value everywhere
Consistency is having identical values for a fact across sources, such as a product's revenue matching between the sales database and the usage database. When data is inconsistent the model receives contradictory inputs and effectively picks one at random, which surfaces as answers that disagree with each other.
Trap Blaming contradictory model answers on missing data; contradictions point to a consistency problem, whereas gaps point to completeness.
4 questions test this
- A national hotel chain is consolidating several years of guest satisfaction surveys into the Vertex AI Platform to train a gen AI model…
- A bank's data team adopts Vertex AI Feature Store so that the same feature values used to train their gen AI model are reused when the…
- A manufacturer is consolidating parts data from many suppliers into the Vertex AI Platform to train a gen AI model that drafts procurement…
- An insurance company is consolidating policy data from several legacy systems into the Vertex AI Platform to train a gen AI model. The data…
- Relevance beats volume when judging data quality
Relevance is whether the data actually pertains to the question at hand. More data is not automatically better, because off-topic records dilute and mislead the output, so a smaller on-point dataset often beats a larger noisy one for a given use case.
Trap Assuming that adding more data always improves output; irrelevant data lowers quality regardless of volume.
5 questions test this
- An agricultural cooperative is assembling a training dataset on the Vertex AI Platform for a gen AI model that advises farmers on crop…
- A telecommunications company wants to train a gen AI model on the Vertex AI Platform to answer customer questions about its mobile plans.…
- A media company wants to fine-tune a gen AI model on Vertex AI to summarize sports news, but its data lake contains decades of mixed…
- A marketing department is building a gen AI model on the Vertex AI Platform to predict customer churn. While reviewing the training…
- A healthcare provider plans to fine-tune a gen AI model in Vertex AI to summarize patient discharge instructions. The data team has…
- Availability is whether you can reach the data, not whether it is clean
Availability, or accessibility, is whether the AI team can actually get to the data when the model needs it, and it is separate from quality. A pristine, consistent table locked inside an unreachable system is useless to a use case, while a reachable but messy dataset can still be cleaned. Availability failures are usually organizational, meaning silos, unclear ownership, or slow access approvals, so a leader fixes them through governance.
Trap Treating unreachable data as a data-quality problem; access is an availability and governance issue, not something a cleaner dataset or a better model solves.
3 questions test this
- An insurance company plans to build a gen AI claims assistant on Vertex AI, but the customer and claims records it needs are scattered…
- A retail company stores product specifications, customer reviews, and support call transcripts in three separate departmental systems that…
- An airline uses Vertex AI Feature Store to serve a gen AI model that generates personalized rebooking offers the moment a flight is…
- Data carries real acquisition, storage, and labeling cost
Cost is a data-quality characteristic because acquiring, storing, cleaning, and labeling data all consume money and time. Weighing that cost against the value a use case returns is part of judging feasibility, since data that no use case will consume is wasted spend.
- Format decides whether data is machine-usable at all
Format is whether the data sits in a form a system can actually process. Data trapped in an unusable format stalls a project before it starts, which is why format sits alongside completeness, consistency, relevance, availability, and cost as a data-quality characteristic.
- Structured data fits a fixed schema of rows and columns
Structured data has a predefined schema and lives in tables of rows and columns, such as sales transactions, CRM records, and inventory tables. Its fixed shape makes it easy to query and aggregate, which is why analytics has always leaned on it, and it typically sits in a relational database or a data warehouse.
Trap Calling a spreadsheet or database table unstructured; a fixed schema makes it structured.
6 questions test this
- A telecommunications company continuously records network performance metrics, such as latency, packet loss, and uptime percentages, every…
- A bank's analytics lead notes that loan transaction records sit neatly in database tables, while the supporting loan application documents…
- A data governance manager is cataloging the company's data sources to assess generative AI readiness. The sources include a relational…
- An energy utility has two key data assets: smart-meter readings recorded into a time-stamped table with fixed columns, and a library of…
- A financial planning team maintains years of customer transaction records in a relational database, neatly organized into columns for date,…
- A retail analytics manager notes that the company's point-of-sale data sits in a database table with consistent columns for transaction ID,…
- JSON, XML, and log files are semi-structured, not unstructured
Semi-structured data has some organization but no rigid table shape, and its attributes vary from record to record. JSON and XML documents, log files, and sensor feeds are the classic examples, sitting between structured tables and free-form content because their tags describe the data without a fixed schema.
Trap Labeling JSON, XML, or log files as unstructured; their self-describing tags make them semi-structured, a favorite exam distractor.
- Unstructured data has no predefined schema
Unstructured data carries no schema at all: emails, PDFs, images, audio, and video. It cannot be dropped into neat rows and columns, which is exactly why traditional analytics struggled with it and why so much of it went unused for years.
11 questions test this
- A property insurance firm receives thousands of scanned PDF claim forms each week, and adjusters currently retype names, dates, and amounts…
- A records manager is reviewing a large corporate email archive to determine its generative AI (gen AI) readiness. Each email contains…
- A human resources team has collected tens of thousands of open-ended written responses from an annual employee engagement survey. The team…
- A genomics research firm is rapidly accumulating raw lab images, recorded interview audio, and scanned consent documents that it plans to…
- A fashion e-commerce company keeps a product catalog database with columns for SKU, price, and size, and separately maintains a massive and…
- A bank's analytics lead notes that loan transaction records sit neatly in database tables, while the supporting loan application documents…
- A retail company wants to use a gen AI image-generation model to create new marketing visuals, and the team is identifying which of its…
- A data governance manager is cataloging the company's data sources to assess generative AI readiness. The sources include a relational…
- An energy utility has two key data assets: smart-meter readings recorded into a time-stamped table with fixed columns, and a library of…
- A media production studio has petabytes of raw video footage, audio recordings, and high-resolution images that it wants to make available…
- An executive asks a data leader why the company's vast collection of unstructured data, such as emails, support-call recordings, and…
- Most enterprise data, up to about 80%, is unstructured
Roughly up to 80% of an organization's data is unstructured, and most of it historically sat unanalyzed because it did not fit structured tables. That share is the whole reason gen AI's ability to use unstructured content matters so much at a business level.
- Gen AI's real unlock is reading unstructured data directly
Multimodal gen AI can read documents, images, audio, and video directly, so the headline business value is turning a previously dead archive into something you can search, summarize, and ask questions of. This is a step change from older analytics, which first needed the data reshaped into structured tables.
Trap Assuming gen AI's main value is faster analysis of structured tables; its distinctive unlock is using the far larger pool of unstructured data.
- Structured data is still best for analytics and reliable grounding
Even as the minority of enterprise data, structured data stays the backbone of analytics and the most dependable source to ground a model on, because its fixed schema keeps values precise and queryable. The takeaway is not to abandon structured data but to add the unstructured majority that gen AI newly unlocks.
- Unstructured data lands in Cloud Storage; structured in BigQuery
At a business level, Google Cloud stores unstructured objects of any format in Cloud Storage, its object store, while structured data for analytics lives in BigQuery, a serverless data warehouse. Knowing which service pairs with which data type helps a leader scope where an organization's AI-ready data already sits.
6 questions test this
- A media company has launched a gen AI pilot, but the relevant articles, scripts, and research files are scattered across individual laptops…
- A genomics research firm is rapidly accumulating raw lab images, recorded interview audio, and scanned consent documents that it plans to…
- A fashion e-commerce company keeps a product catalog database with columns for SKU, price, and size, and separately maintains a massive and…
- An online education provider is accumulating a mix of recorded lecture videos, instructor audio files, and scanned course handouts that it…
- An operations team at a manufacturing firm has thousands of maintenance manuals, inspection reports, and procedures saved as PDFs and Word…
- A media production studio has petabytes of raw video footage, audio recordings, and high-resolution images that it wants to make available…
- Labeled data pairs each example with its correct answer
Labeled data attaches the right output to each example, such as emails marked spam or not spam, or images tagged by the object they contain, and it is what supervised learning trains on. Because people usually create the labels, producing them is the slow, expensive part of classical machine learning.
7 questions test this
- A product manager wants to launch a supervised learning project on Vertex AI to classify support tickets by urgency. The company has…
- A precision-agriculture company has collected 200,000 drone images of crops, but none of the images carry any annotations. Leadership wants…
- A retail analytics team at an e-commerce company has a dataset of 50,000 product photographs, where each photograph has been manually…
- A cybersecurity team has collected millions of network traffic logs, but none of the records are tagged as normal or malicious. The team…
- A startup wants to build a supervised text-classification model on Vertex AI, but the documents it has collected carry no category tags. A…
- A project lead at a media company is weighing whether to invest in labeling a large dataset before starting a gen AI initiative. The lead…
- A customer service organization has an archive of 500,000 past support emails that, over several years, were each manually tagged by agents…
- Unlabeled data is raw data with no answers attached
Unlabeled data has no annotations marking the correct output, and it is the vast majority of what any organization collects. On its own it cannot train a classic supervised model, but it is exactly what foundation models learn from during pre-training.
- Foundation models cut the need for large labeled datasets
Foundation models are pre-trained on enormous amounts of largely unlabeled data, so the heavy learning happens before any of your labels exist. That lets an organization get value with little or no labeling and only add a smaller labeled set when it chooses to fine-tune, shifting the question from 'can we afford to label millions of examples' to 'which data can we reach and trust'.
Trap Assuming a foundation model still needs a large hand-labeled dataset before it is useful; pre-training on unlabeled data is what removes that upfront requirement.
- Labeled data still matters, mainly for fine-tuning and evaluation
Foundation models reduce but do not eliminate the need for labels: a smaller labeled set is what you use to fine-tune a model to a specific task or to measure output quality. Labeling moved from a mandatory upfront tax to an optional investment made only when accuracy demands it.
Gen AI Landscape
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Google Foundation Models
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Google Cloud Gen AI Offerings
Google Cloud's Gen AI Strengths
Read full chapterCheat sheet
Sharp facts the exam loves — scan these before test day.
- Google's AI-first strength is first-party frontier models, not resold ones
Google runs AI-first: its researchers originated the Transformer architecture behind modern large language models, and its research lab Google DeepMind builds the Gemini models that Google Cloud serves. The commercial payoff is continuity: because Google owns both the research and the platform, model gains reach you as version upgrades on Vertex AI rather than a re-platforming project, which is what 'commitment to future innovation' means on this exam.
- Google's edge is full-stack: it designs the silicon through to the model
Rather than assembling third-party parts, Google designs every layer of the AI stack, from custom TPUs and the data-center network up to the Gemini models and the Vertex AI platform. Owning the whole stack is what lets Google train frontier models at scale and pass the price-performance on, an integration a provider renting generic accelerators cannot match as tightly.
- AI Hypercomputer is one integrated system, not a single product
AI Hypercomputer is Google Cloud's integrated supercomputing system for AI, organized in three layers: performance-optimized hardware (TPUs and GPUs with high-bandwidth networking and storage), optimized open software (JAX, PyTorch, TensorFlow), and flexible consumption options that trade cost against availability. Read it as the architecture beneath large-scale training and serving, not a machine type you buy on its own.
Trap Treating AI Hypercomputer as a single machine or SKU; it is an integrated hardware-plus-software system spanning three layers.
- Send matrix-heavy training to TPUs, custom-op work to GPUs
A TPU (Tensor Processing Unit) is Google's custom-designed ASIC built for the large matrix multiplications that dominate deep learning, and Cloud TPU offers it as a cloud resource. TPUs give the best price-performance on regular, matrix-heavy training and serving, while GPUs stay the flexible choice for models with custom or irregular operations; AI Hypercomputer offers both so the workload picks the accelerator.
Trap Assuming TPUs replace GPUs for every model; irregular or custom-operation workloads still run better on GPUs.
9 questions test this
- A research organization is preparing to train a large foundation model from scratch and wants to run it on Google's own custom-built…
- A media analytics firm plans to deploy machine learning models alongside graphics-intensive visualization workloads, and the engineering…
- A startup is building a large-scale recommendation engine and wants the most cost-efficient accelerator that Google itself custom-designed…
- A scientific research organization wants to run a broad and changing mix of machine learning frameworks alongside other general-purpose…
- A company that operates a popular AI assistant needs to serve predictions from its large language models to millions of users continuously…
- A company is launching a large-scale generative AI chatbot and wants the most cost-efficient, highly scalable accelerator, the same class…
- A healthcare research lab plans to train a large foundation model from scratch, a workload that demands sustained, massive-scale…
- An engineering team has existing machine learning workloads built around the NVIDIA software ecosystem and wants the flexibility to keep…
- A visual effects studio already runs its machine learning pipelines on the NVIDIA CUDA software stack and a wide range of open-source…
- Enterprise-ready means five named properties: responsible, secure, private, reliable, scalable
Google Cloud frames its AI platform as enterprise-ready on five properties, responsible, secure, private, reliable, and scalable, so a business inherits those guarantees instead of assembling them itself. A scenario about trust, compliance, or scale is usually pointing at one of these five, so name the specific property the question tests.
- Your prompts and tuning data are not used to train Google's models without permission
The core data-control commitment is that customer data (prompts, responses, and tuning data) is not used to train Google's foundation models without your permission, and it is encrypted in transit and at rest. This is what 'private' means concretely for gen AI on Google Cloud, and it is the most testable point when a question asks who can use enterprise data.
Trap Assuming any managed AI service may train on your prompts by default; on Google Cloud that requires your permission.
- Residency is where data sits; sovereignty is who controls access to it
Data residency pins the physical location of data, while data sovereignty governs who has jurisdiction and access over it, and they are different guarantees. Assured Workloads enforces both, pinning residency to chosen regions and restricting Google-personnel access, which is why regulated industries use it for sovereignty requirements rather than region selection alone.
Trap Treating a region choice as sovereignty; setting data location does not by itself restrict who can access the data.
Responsible AI is the practice of building AI that is fair, accountable, safe, and privacy-respecting, and on Vertex AI it is a shared responsibility. Google supplies configurable safety filters and tooling, and the customer sets the thresholds and governs how the model is used, so neither side owns it alone.
Trap Assuming the provider alone is accountable for responsible AI outcomes; the customer still configures the safety controls and governs use.
- Google's open approach spans open models and open frameworks
The open approach has concrete meanings: Google publishes open models such as Gemma that you can download and run anywhere, and it builds on open frameworks including JAX, TensorFlow, and Kubernetes, which Google created and released as open source. This lets teams avoid a proprietary-only toolchain and keeps workloads portable.
- Vertex AI Model Garden serves Google, open, and partner models, not only Google's
Model Garden is a single catalog spanning three model families: Google first-party models (Gemini, Imagen, Veo), open models (Gemma, Llama), and partner models such as Anthropic's Claude. Choosing across vendors on one platform is Google Cloud's answer to single-model lock-in, so the platform choice does not force one model provider.
Trap Assuming Vertex AI only serves Google's own models; Model Garden also offers open and partner models.
24 questions test this
- An engineering team wants a single place in Vertex AI where they can not only discover pre-built foundation models but also begin…
- A product team at a media streaming company has narrowed their choices to a few candidate foundation models. Before committing, they want…
- A developer team at a logistics company wants to explore the full range of available foundation models, including Google's first-party…
- A multinational retailer's strategy team expects its data-residency and regulatory obligations to keep changing across the markets it…
- A technology company needs to discover and evaluate different foundation models for their new generative AI project. They want access to…
- A global enterprise is evaluating AI models for various business units and wants a centralized platform where teams can discover, test, and…
- A developer team at an insurance firm wants to evaluate models from several providers, including Google's first-party models and…
- An enterprise's central AI governance team is worried that individual product teams are downloading unvetted gen AI models directly from…
- A machine learning team at a media company wants to quickly try out several pre-built foundation models with sample prompts so they can…
- A logistics enterprise wants to evaluate and compare a broad range of foundation models, including Google's first-party and other available…
- A technology startup wants to accelerate their generative AI development by leveraging pre-existing foundation models rather than building…
- A retail company's product team wants to explore and compare a wide range of foundation models, including Google's first-party models and…
- A financial services company wants to explore multiple AI models from different providers before committing to a specific solution. They…
- An organization wants to leverage the breadth of AI innovation while maintaining the flexibility to choose models from different sources.…
- A fintech development team is starting a new project and wants to accelerate it by adopting an existing pretrained foundation model rather…
- A developer team mistakenly assumes they must build a conversational agent before they can use a foundation model, when in fact they simply…
- A financial services company needs to build AI applications using foundation models from multiple providers, including Google's Gemini,…
- A retail company's development team wants to incorporate a popular open model into their application but prefers not to source, validate,…
- A developer team at an insurance firm wants to try sample prompts against several different foundation models and compare their responses…
- A developer team at a logistics company wants to explore the range of available foundation models, including Google's first-party models,…
- Before adopting a foundation model, a development team at a travel company wants to interactively try sample prompts against several…
- A developer team wants access to popular open models, such as Gemma and other community models, alongside Google's first-party models, so…
- A financial services company is evaluating Google Cloud for their generative AI strategy. They want to access foundation models from…
- A platform engineering lead at an enterprise needs to evaluate and compare a wide range of foundation models, including Google's Gemini,…
- Google embeds gen AI across its products, reaching non-developers
The comprehensive-ecosystem strength is that the same gen AI appears throughout Google's products, not only in a developer console. Gemini in Workspace drafts and summarizes inside Gmail, Docs, and Meet, and Gemini Cloud Assist helps design and troubleshoot inside Google Cloud, putting AI in front of employees who never open Vertex AI.
- Match the build tier to the team's skills and data
Google Cloud democratizes AI with a spectrum of build options: a pre-trained API when the task is already solved, AutoML to train on your own labeled data with little ML expertise, or a fully custom model on Vertex AI when you have an ML team and need full control. The product-selection rule this domain tests is to pick the tier that fits the available skills and data, defaulting to the simplest tier that works.
Trap Reaching for custom model training when a pre-trained API or AutoML already meets the requirement; the extra effort and ML expertise buy nothing there.
- Use a pre-trained API when Google's model already solves the task
Calling a pre-trained API needs no ML expertise and no training data of your own; you prompt an existing model and get the fastest time to value. It fits already-solved tasks such as common language or vision work, where training your own model would add cost and delay without improving the outcome.
2 questions test this
- Choose AutoML to train on your own data with little ML expertise
AutoML lets an organization train a high-quality custom model on its own labeled data through a low-code or no-code interface, so a team with domain data but limited ML skills can still get a model tuned to its problem. It sits between calling a pre-trained API and building a fully custom model on Vertex AI, and it does require labeled training data.
Trap Picking AutoML when you have no labeled data; AutoML trains on your data, so without it a pre-trained API is the fit.
7 questions test this
- A retail chain with limited in-house AI expertise asks its Google Cloud strategist which 'AI democratization' capability would let its…
- A regional insurance firm has business analysts who understand their claims data well but have no programming or machine learning…
- A logistics company's operations managers, who have strong domain knowledge but cannot write code, want to build a model that forecasts…
- A museum's digital-archives team wants to create a custom model that tags artworks by style using its own catalog, but the team has no…
- A retail company has a large dataset of product images and wants to build a custom model that automatically classifies items into its…
- A sports-media company's editorial team wants a custom model that classifies its own archived game clips into play types, such as 'goal' or…
- A healthcare administrator wants to develop a custom model to categorize incoming patient feedback forms by topic, using the organization's…
- Build a fully custom model on Vertex AI when you need full control
Building a custom model on Vertex AI gives full control over the model and the pipeline, and it is the right call when the requirement is bespoke and the team has ML engineers and sufficient data. It is the slowest and most skill-intensive tier, so reserve it for problems the pre-trained API and AutoML tiers genuinely cannot meet.
Prebuilt Gen AI Offerings
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Customer Experience
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Developer AI Platform
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Gen AI Agent Tooling
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Improving Model Output
Overcoming Model Limitations
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Prompt Engineering
Read full chapterCheat sheet
Sharp facts the exam loves — scan these before test day.
- Prompt engineering steers output without retraining the model
Prompt engineering is the practice of crafting the words you send a large language model so it returns the output you want, changing nothing inside the model itself. Because it needs no training data, no labeled examples, and no infrastructure, it is the cheapest and fastest lever for improving results, so it is the first one to try. Google describes it as an iterative, test-driven process of refining inputs to reach a specific outcome.
6 questions test this
- A mid-sized insurance company's innovation lead wants to improve the usefulness of Gemini's outputs but has no budget for additional…
- A technology company has limited labeled data and needs to quickly test different generative AI approaches for a new chatbot application.…
- A small e-commerce startup wants a foundation model in Vertex AI Studio to write friendlier product blurbs. The team has no labeled…
- A retail company's customer-experience leader notices that staff using the Gemini app get inconsistent results: some employees receive…
- A chief executive officer questions why employees should spend time carefully wording their requests to the company's Gemini-powered…
- A logistics company must improve a foundation model's call-center reply drafts within two weeks to meet a seasonal demand spike. The model…
- Treat prompting as an iterative loop, not a one-shot write
Good prompts are refined, not written perfectly the first time. The loop is write the prompt, run it, read the output, and adjust the wording, repeating until the answer is accurate and well formatted. Building in a few refinement passes is normal practice rather than a sign the approach is wrong.
- Zero-shot prompting gives an instruction and no examples
A zero-shot prompt states the task and relies entirely on the model's pre-existing knowledge, with no worked examples included. It is the right choice for simple, familiar tasks the model already handles well, where adding examples would only lengthen the prompt.
Trap Reading zero-shot as a hasty or vague prompt; it specifically means no worked examples are supplied, not that the prompt is low-effort.
9 questions test this
- A communications manager needs Gemini in Vertex AI Studio to summarize a single, well-structured news article. The task is straightforward,…
- A leader is comparing prompting options for Gemini in Vertex AI Studio and asks what one-shot prompting adds compared with zero-shot…
- A marketing team is experimenting with prompting techniques in Vertex AI Studio to generate product descriptions. They want to quickly test…
- A business leader is documenting the prompting approaches their analytics team uses with Gemini in Vertex AI Studio. They want to label the…
- A multinational retailer wants Gemini in Vertex AI Studio to translate short English product names into Spanish for an online catalog. This…
- A business leader is reviewing prompting practices and wants to understand which approach asks the model to perform a task using only an…
- A financial services firm wants to use Gemini in Vertex AI Studio to draft plain-language definitions of widely known investment terms for…
- A business analyst is designing prompts in Vertex AI Studio for a straightforward task that the model handles well with its general…
- A communications officer needs Gemini to translate a short internal announcement from English into Spanish. The task is common and…
- One-shot prompting supplies a single worked example
A one-shot prompt includes exactly one example of the desired input and output to demonstrate the pattern you want. It fits when a single example is representative enough to pin down the format, and it sits one rung above zero-shot on the example ladder.
12 questions test this
- A leader is comparing prompting options for Gemini in Vertex AI Studio and asks what one-shot prompting adds compared with zero-shot…
- A product team uses Gemini to rewrite blog titles in their brand's distinctive voice. To guide the model, a writer pastes exactly one prior…
- A finance team uses Gemini in Vertex AI Studio to draft a quarterly investor-update blurb that must match a particular layout and phrasing…
- A regional manager wants Gemini in Vertex AI Studio to format weekly team status updates to match exactly one report format that leadership…
- A UX writer wants Gemini to generate in-app error messages that follow the product's consistent, friendly wording style. A direct…
- An operations lead has only one carefully prepared example of a desired inventory report layout and limited time to gather more. The task…
- A recruiting coordinator wants Gemini to generate polite interview-decline emails in a specific, warm tone. The coordinator pastes one…
- A support operations manager asks Gemini to reformat a knowledge-base article so it matches the company's house style. The manager pastes…
- A customer success lead wants Gemini to write a subscription renewal-reminder message that matches the company's preferred tone. A plain…
- A human resources team wants Gemini in Vertex AI Studio to rewrite hiring-manager notes into job descriptions that follow one specific…
- A product team wants Gemini to convert short feature descriptions into a specific marketing tagline format. They have one strong example of…
- A legal operations team wants Gemini in Vertex AI Studio to extract clauses from contracts into an unusual two-part annotation structure…
- Use few-shot examples for consistent format and style
A few-shot prompt includes several worked examples that teach the model the format, phrasing, and scope you expect, which is why Google recommends including them for most non-trivial tasks. The counterweight is a ceiling: too many examples cause the model to overfit to them and generalize worse, so a handful of well-chosen examples beats a long list.
Trap Piling on more and more examples expecting steady gains; past a few, extra examples overfit the model to them rather than improving the answer.
16 questions test this
- A logistics analyst uses Gemini in Google AI Studio to convert freeform delivery updates into a small set of fixed labels such as 'In…
- A customer service team uses Vertex AI Studio for automatic email classification. Their zero-shot prompt provides instructions to…
- An operations analyst is using the Gemini app to extract product details from messy supplier descriptions and return them in a strict,…
- A data analytics team uses a simple zero-shot prompt in Vertex AI Studio to classify customer feedback sentiment with Gemini, but the label…
- A marketing team wants to use Vertex AI Studio to classify customer feedback emails into categories such as 'Complaint', 'Suggestion', or…
- A customer experience manager wants to use the Gemini app to classify incoming support tickets into categories such as 'Billing',…
- A retail merchandising analyst uses Gemini in Google AI Studio to sort incoming product descriptions into seasonal collections such as…
- A compliance analyst uses Gemini in Google AI Studio to flag potential policy-violation phrases in employee messages. Violations take many…
- A customer insights team uses Gemini in Google AI Studio to rate open-ended survey comments on a five-level satisfaction scale. A plain…
- A market research team uses Gemini in Vertex AI Studio to produce competitive-analysis briefs that must follow several recurring structural…
- A marketing team is using Vertex AI Studio to generate product descriptions. They want the model to produce descriptions in a specific…
- A media company wants Gemini in Vertex AI Studio to tag opinion articles using its own custom editorial tone scale, which has several…
- A business leader is comparing prompting approaches their team uses with Gemini in Vertex AI Studio. They want to identify the approach…
- A product team is using Vertex AI Studio to generate product descriptions. Initially, they provide only an instruction like 'Generate a…
- A customer service team is setting up a text generation task in Vertex AI Studio. They want the model to respond to customer inquiries in a…
- A customer-experience lead at a travel agency finds that when a foundation model in Vertex AI Studio is shown two or three sample…
- Role prompting casts the model as a persona to steer tone and depth
Role prompting, also called persona prompting, tells the model who to act as, such as a financial analyst or a support agent, which shapes the vocabulary, tone, and depth of the answer with no examples needed. Google's guidance adds a practical rule: if you assign a role, define it in the prompt, because a prompt that refers to a persona it never established leaves the model guessing.
Trap Referring to a persona the prompt never actually defined; the model cannot consistently adopt a role it was never given.
10 questions test this
- A hospitality company is building a virtual concierge with Vertex AI Agent Builder. They want the agent to consistently respond as a…
- A wealth management firm wants to use the Gemini app to draft client-facing investment update emails that consistently read as if they were…
- A hotel chain's guest-experience team wants a Gemini-powered assistant to answer guest messages as though it were a warm, knowledgeable…
- A pharmaceutical company's communications team wants a generative AI assistant built on Gemini to draft patient-facing materials that…
- A marketing manager configures a Gemini-based agent to write all of the brand's social media posts in the distinctive, playful voice of its…
- An IT department is building a custom support agent with Vertex AI Agent Builder. They want the agent to consistently respond as a patient,…
- A travel-booking company wants its Gemini-powered help responses to consistently sound like a cheerful, well-traveled trip advisor. Each…
- A corporate sustainability team wants Gemini to draft employee-facing materials that consistently reflect the perspective, judgment, and…
- A wealth management firm wants a Gemini-powered assistant to reply to routine client emails so that every response consistently reflects…
- A B2B software company wants to use the Gemini app to draft customer-facing FAQ answers that consistently read as if written by an…
- Prompt chaining splits a complex job into linked prompts
Prompt chaining breaks a complex task into a sequence of smaller prompts and feeds each output into the next, so one prompt summarizes, the next outlines, and a third writes. Each step stays simple and easy to check, but an error in an early step flows downstream, so the earliest prompts deserve the most scrutiny.
Trap Trusting a long chain without checking the early steps; a mistake in the first prompt is carried into every prompt that follows it.
7 questions test this
- A market research analyst uses Gemini to turn thousands of open-ended survey responses into a client recommendations report. The process…
- A compliance analyst uses Gemini to process incident reports in stages: first extract the key facts, then classify the severity from those…
- A regional operations manager uses Gemini to produce a quarterly business review. The process must first summarize each region's metrics,…
- A marketing operations manager wants Gemini to power a content workflow in which the model first generates a campaign theme, then uses that…
- A product team receives thousands of customer reviews in multiple languages. They want Gemini to first translate the reviews into English,…
- A product management team at a software company wants to use Gemini to turn a raw feature brief into polished documentation through an…
- A recruiting team wants to use Gemini to process applications through an ordered sequence of dependent steps: first summarize each resume,…
- Chain-of-thought asks the model to show its reasoning steps
Chain-of-thought (CoT) prompting has the model spell out its intermediate reasoning before giving a final answer, which significantly improves accuracy on math, logic, and other multi-step problems. The cost is length: the model produces more text, so it is slower and more expensive, which is why CoT is reserved for tasks that genuinely need multi-step reasoning.
Trap Adding chain-of-thought to a simple lookup or one-step task; it only adds tokens, latency, and cost without improving a direct answer.
3 questions test this
- A financial planning team uses a foundation model on Vertex AI to work through multi-step budgeting and tax calculations. The model often…
- A financial planning analyst asks Gemini to evaluate whether a proposed equipment purchase will pay for itself. Reaching a conclusion…
- A procurement analyst uses Gemini to recommend a single supplier from several competing bids. Reaching a justified recommendation requires…
- ReAct interleaves reasoning with actions and observations
ReAct, short for reasoning and acting, has the model reason about the task, take an action such as calling a tool or running a search, read the result, and reason again, looping until it can answer. This lets the model use information beyond its own training, and the reasoning-and-acting pattern is the conceptual basis of tool-using agents.
Trap Choosing chain-of-thought when the task needs live data or a tool; CoT reasons but cannot look anything up, so a lookup calls for ReAct.
3 questions test this
- An online electronics retailer is building a shopping-assistant agent with Vertex AI Agent Builder. To help a shopper, the agent must…
- An IT operations leader is building a service-desk agent with Vertex AI Agent Builder. When an employee reports an outage, the agent must…
- A logistics company is building a customer-service agent with Vertex AI Agent Builder that must reason about a shipping question and then…
- Match the prompting technique to the symptom in the task
The technique follows from the failure you see. Wrong format or tone points to few-shot examples, a consistent structure across responses to few-shot, a specific voice to role prompting, a long multi-stage job to prompt chaining, hard multi-step reasoning to chain-of-thought, and a need for live data or tools to ReAct.
Trap Reaching for more few-shot examples as a universal fix; some failures, such as stale facts, no number of examples can solve.
- Prompting cannot add facts the model never learned
Prompt engineering changes the wording, not the model's knowledge, so it cannot supply current events or private data the model was never trained on. When answers must reflect fresh or authoritative facts, grounding or retrieval-augmented generation (RAG) is the correct lever, not a cleverer prompt.
Trap Adding examples or rephrasing to fix outdated or missing facts; wording shapes format, not knowledge, so the fix is grounding or RAG.
- Fine-tuning, not prompting, changes model behavior at scale
When a specialized task or house style must hold consistently across every request, fine-tuning adapts the model's weights on labeled examples, whereas prompting only shapes a single response and does not persist. Prompting is the lighter, cheaper lever, so you reach for fine-tuning only when prompt techniques cannot reach the needed consistency.
Trap Fine-tuning to add fresh facts; tuning changes behavior and style, not knowledge freshness, which is grounding's job.
- Chain-of-thought and prompt chaining are different techniques
The similar names hide a real difference. Chain-of-thought is a single prompt that asks the model to expose its reasoning steps, while prompt chaining links several separate prompts in sequence, passing each output to the next. One is about visible reasoning inside one prompt, the other about wiring prompts together.
Trap Treating chain-of-thought and prompt chaining as the same thing because the names rhyme; they operate at different levels, one inside a prompt and one across prompts.
- Few-shot prompting is not fine-tuning on a few examples
Few-shot means placing a few worked examples inside the prompt at request time, and nothing is trained or permanently changed. Fine-tuning on a few examples instead updates the model's weights, so the shared word 'few' hides two very different mechanisms with different costs and durability.
Trap Reading few-shot prompting as a lightweight form of fine-tuning; few-shot trains nothing and only adds examples to the prompt.
- Put the needed context and clear instructions in the prompt
Rather than assuming the model already has the facts and constraints a task needs, include them in the prompt, and state specific instructions instead of vague ones. Adding the relevant context and being explicit about the desired output is often the single biggest, lowest-effort quality improvement.
Grounding and RAG
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Business Strategy for Gen AI
Implementing Gen AI Solutions
Read full chapterCheat sheet
Sharp facts the exam loves — scan these before test day.
- Start a gen AI initiative from the business outcome, not the model
Google Cloud's recommended first move is to define the business goal and its success criteria, then choose a solution that serves it, working backward from the outcome instead of starting with an impressive model and hunting for a use. A gen AI solution should never exist in isolation, so if you cannot state the outcome and how you will measure it, you are not ready to build. This is why the exam frames implementation as strategy rather than model selection.
Trap Picking a model or product first and then searching for a problem it might solve, leaving the initiative with no measurable business goal behind it.
- Drive gen AI through four stages: assess, choose, integrate, measure
The implementation journey has four stages, assess the need, choose the right solution, integrate it into the organization, and measure the impact, and it runs as a loop because measured results feed the next round of use-case selection. Placing a scenario on the correct stage and naming the next action is the core skill this subtopic tests. Securing and governing the system run alongside all four stages rather than forming a fifth step.
6 questions test this
- A regional bank's leadership is enthusiastic about generative AI but has not yet identified which business problems it wants to solve or…
- A pharmaceutical company's innovation board wants to adopt generative AI but has not yet documented where employees lose the most time,…
- An insurance company has already documented its requirements: employees waste hours searching thousands of policy PDFs and claim documents…
- A retail bank has documented its requirements: customers want a self-service assistant that not only answers product questions but can also…
- A retailer's Vertex AI Search assistant has been live for six months and is widely used by store associates. The CFO now asks the project…
- A streaming media company has finished assessing its needs: it wants a proprietary content-summarization capability trained on its own…
- Name the business job to pick the gen AI solution type
Gen AI value clusters into a few jobs, and naming the job points to the solution type: create maps to content generation, summarize to summarization, discover to search and grounding, automate to agents, and personalize to a tailored experience. Recognizing which job a scenario describes is how you narrow to a solution type. The job, not the product catalog, drives the choice.
3 questions test this
- An insurance company has already documented its requirements: employees waste hours searching thousands of policy PDFs and claim documents…
- A retail bank has documented its requirements: customers want a self-service assistant that not only answers product questions but can also…
- A logistics company has finished assessing its requirements and is now at the solution-selection step. It does not just want answers from…
- Content generation spans text, image, code, and video across distinct models
The generation solution types map to distinct Google models: Gemini generates text and code, Imagen generates images, and Veo generates video. A leader matches the output the business needs to the right generation model. Text and code share the multimodal Gemini model, while image and video each have a dedicated model.
Trap Assuming a single model covers every modality; image generation is Imagen and video generation is Veo, not Gemini.
3 questions test this
- A software engineering team at a fintech company wants to accelerate development by having generative AI suggest functions, complete…
- An online retailer needs to automatically produce thousands of unique, engaging product descriptions generated from basic item attributes…
- A marketing agency needs to rapidly create original, photorealistic campaign visuals directly from written creative briefs to replace slow…
- Weigh business requirements and technical constraints together
Whether a gen AI solution fits is decided by two factor families that both must pass: business requirements (the outcome, budget, users, and whether the capability must differentiate you or is a commodity) and technical constraints (data availability and quality, security and residency, latency, and integration). A choice that is ideal on business grounds still fails if one technical constraint rules it out, for example data that cannot leave a region. Check both before committing.
Trap Selecting a solution on business value alone, then discovering a data-residency or integration constraint makes it unusable.
- Reach for the simplest build tier that meets the requirement
Google Cloud offers three build tiers from lowest to highest effort: a pre-trained API when its model already solves the task, AutoML to train a custom model on your own labeled data with little ML expertise, and a fully custom model on Vertex AI when you need full control and differentiation. Match the tier to the team's skills and data, and climb to a custom build only when a simpler tier genuinely cannot meet the need. The detailed tier trade-offs are covered under Google Cloud's strengths.
Trap Committing to a custom-built model when a pre-trained API already solves the task, spending ML effort and time for no added differentiation.
- Prove value with a pilot before you scale
Integration starts with a proof of concept: a small, time-boxed build that tests whether the solution moves your defined metric on real data and real users before you commit budget to scale. A pilot that clears its success criterion earns the case for production, and one that fails saves you the larger spend. Scaling an unproven idea across the business is the classic way a gen AI budget is spent with nothing to show.
Trap Rolling a promising demo out organization-wide without a scoped pilot, so a solution that never moved the target metric consumes the full budget.
- Build on an enterprise-ready platform so governance comes built in
Running a gen AI solution on Vertex AI means the platform supplies governance, security, scaling, and model access, so a team integrates a capability instead of assembling those guarantees for each project. This is why enterprise readiness (responsible, secure, private, reliable, scalable) is a selection criterion, not an afterthought. Stitching those controls together yourself for every use case slows each project and invites gaps.
- Google does not train its foundation models on your prompts or tuning data without permission
Under Google Cloud's data-governance terms, customer prompts, responses, and tuning data are not used to train Google's foundation models without the customer's permission, and data is encrypted. For a regulated business this data-control commitment is often what unblocks adoption at all, so it belongs in the integration decision. It is a concrete contractual guarantee, not a general reassurance.
Trap Assuming that sending prompts to a hosted foundation model means Google trains on your data by default; the governance terms say it does not without permission.
- Redesign the process and manage change, not just the deployment
Gen AI pays off only when the workflow around it changes, so integration means redesigning the business process to fit the new capability, investing in change management and skills, and keeping a human in the loop where a wrong answer carries real cost. A technically working model that no one adopts delivers no value. Adoption, not deployment, is the finish line.
Trap Treating integration as shipping the model and stopping there, leaving the existing process and untrained staff unchanged so adoption never happens.
- Use the Cloud Adoption Framework themes to gauge readiness: learn, lead, scale, secure
Google's Cloud Adoption Framework names four themes, learn, lead, scale, and secure, that assess whether an organization, not just a model, is ready to adopt and scale. It gives stakeholders a shared vocabulary for readiness and change management, distinct from designing any specific system. Use it as a checklist before scaling a gen AI initiative organization-wide.
- Define KPIs and capture a baseline before the solution goes live
Impact is the difference from a starting point you recorded, so agree the key performance indicators and capture a baseline before launch; a solution shipped without a baseline can never prove its value. KPIs also keep an initiative honest by aligning it to the business goal and exposing when improving one metric hurts another. You cannot manage what you did not measure.
Trap Launching first and deciding how to measure success afterward, leaving no baseline to compare against and no way to prove ROI.
4 questions test this
- A CIO is sponsoring a generative AI initiative to automate parts of internal IT support and wants to ensure that, from the start, the…
- A retail company's customer service director deploys a generative AI assistant to help agents resolve support tickets faster. After three…
- A telecom company added a Vertex AI Search self-service help center to its website so customers can resolve common issues without…
- Before launching a Vertex AI Search assistant that will help field technicians locate repair manuals, a manufacturer's project lead records…
- Track five KPI categories, not just model accuracy
Google Cloud groups gen AI KPIs into five categories: model quality (are the outputs accurate), system quality (is it reliable and responsive), business-operational (did the target process improve), adoption (are people using it), and business value (is it worth the money). Judging a solution by model accuracy alone misses whether it is used or pays for itself. A rising accuracy score means little if adoption is flat.
Trap Judging a gen AI initiative on model-accuracy metrics alone while ignoring the adoption and business-value KPIs that decide whether it actually succeeds.
- ROI sets value delivered against cost, and justifies scaling
Return on investment measures the value a solution delivers against the cost to build and run it, and it is the number that funds scaling to the next use case. Strong ROI justifies the next initiative; a weak result sends you back to reassess the need or the fit, closing the four-stage loop. This is why business value sits alongside the technical KPIs, not beneath them.
- Not every problem needs generative AI
Defining a use case includes deciding whether generative AI, traditional AI, or no AI at all is the right approach, so choosing well sometimes means ruling gen AI out when a simpler method fits. Forcing gen AI onto a problem it does not suit wastes effort and adds risk. Match the approach to the problem before selecting a gen AI solution type.
Trap Applying generative AI to a well-structured, deterministic task that traditional automation or analytics would solve more cheaply and reliably.
Secure AI and SAIF
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.
Responsible AI
Read full chapterUnlock with Premium — includes all practice exams and the complete study guide.