The Transformers library provides pre-trained models and tools for tasks involving text, images, audio, and more.
Incorrect! Try again.
10What is Ollama commonly used for?
Ollama
Easy
A.Creating printed circuit boards
B.Editing relational database tables
C.Managing spreadsheet formulas
D.Running language models locally
Correct Answer: Running language models locally
Explanation:
Ollama helps users download, manage, and run supported large language models on their own computers.
Incorrect! Try again.
11What is one benefit of running an AI model locally with Ollama?
Ollama
Easy
A.Training always becomes completely free
B.Data can remain on the device
C.Hardware requirements are fully removed
D.Every model gains perfect accuracy
Correct Answer: Data can remain on the device
Explanation:
Local execution can improve privacy because prompts and data may remain on the user's own device.
Incorrect! Try again.
12What is LangChain mainly designed to help developers build?
LangChain
Easy
A.Drivers for wireless networks
B.Layouts for printed magazines
C.Applications powered by language models
D.Processors for desktop computers
Correct Answer: Applications powered by language models
Explanation:
LangChain provides components for connecting language models with prompts, data sources, tools, and application workflows.
Incorrect! Try again.
13In LangChain, what is a chain?
LangChain
Easy
A.A sequence of connected operations
B.A collection of database passwords
C.A physical device for data storage
D.A type of computer network cable
Correct Answer: A sequence of connected operations
Explanation:
A chain links steps such as prompts, model calls, retrieval, and output processing into a workflow.
Incorrect! Try again.
14What does a vector database primarily store and search?
Vector databases: conceptual overview
Easy
A.Programs converted into paper documents
B.Printed reports arranged by date
C.Passwords stored as plain text
D.Numerical representations called vectors
Correct Answer: Numerical representations called vectors
Explanation:
Vector databases store vectors, often called embeddings, and search for items with similar numerical representations.
Incorrect! Try again.
15What is similarity search in a vector database used to find?
Vector databases: conceptual overview
Easy
A.Users with matching account passwords
B.Files with identical creation dates
C.Items with related vector representations
D.Devices with equal screen sizes
Correct Answer: Items with related vector representations
Explanation:
Similarity search compares vectors to find content that is semantically or numerically related to a query.
Incorrect! Try again.
16Which activity usually occurs before training an AI model?
Artificial Intelligence development workflow
Easy
A.Replacing all network equipment
B.Publishing the final user manual
C.Deleting the evaluation results
D.Collecting and preparing data
Correct Answer: Collecting and preparing data
Explanation:
AI models need suitable data, so data collection and preparation normally happen before model training.
Incorrect! Try again.
17Why is an AI model evaluated after training?
Artificial Intelligence development workflow
Easy
A.To measure its performance
B.To rename its source files
C.To replace its programming language
D.To increase the monitor size
Correct Answer: To measure its performance
Explanation:
Evaluation measures how well the trained model performs on suitable data and whether it meets project goals.
Incorrect! Try again.
18Which development is a major future trend in Artificial Intelligence?
Future trends in Artificial Intelligence
Easy
A.More multimodal AI systems
B.Less use of digital data
C.Removal of all automation
D.Replacement of every database
Correct Answer: More multimodal AI systems
Explanation:
Multimodal AI systems can work with multiple data types, such as text, images, audio, and video.
Incorrect! Try again.
19What does Artificial General Intelligence refer to?
Artificial General Intelligence
Easy
A.AI created for one narrow task
B.Software used only for storage
C.AI with broad human-like abilities
D.Hardware used only for printing
Correct Answer: AI with broad human-like abilities
Explanation:
Artificial General Intelligence is the idea of AI that can understand and perform a wide range of intellectual tasks.
Incorrect! Try again.
20What is a main goal of Sustainable AI?
Sustainable AI
Easy
A.Replacing efficient hardware with older devices
B.Increasing energy use during training
C.Reducing environmental and resource costs
D.Using larger models for every task
Correct Answer: Reducing environmental and resource costs
Explanation:
Sustainable AI aims to reduce energy use, emissions, and resource consumption while maintaining useful AI capabilities.
Incorrect! Try again.
21A team wants to replace its image-classification model without changing the web application that uses it. Which ecosystem design best supports this requirement?
Artificial Intelligence development ecosystem
Medium
A.Store predictions in the source-code repository
B.Expose the model through a stable inference API
C.Embed model weights directly in the web interface
D.Require the application to retrain before each request
Correct Answer: Expose the model through a stable inference API
Explanation:
A stable inference API separates the model implementation from the application, allowing the model to be replaced with minimal application changes.
Incorrect! Try again.
22An AI service performs well during testing but slows down when many users access it simultaneously. Which ecosystem component should the team examine first?
Artificial Intelligence development ecosystem
Medium
A.Model-serving infrastructure
B.Notebook visualization settings
C.Source-code formatting rules
D.Data-labeling guidelines
Correct Answer: Model-serving infrastructure
Explanation:
Concurrent-request performance is primarily affected by model serving, including batching, scaling, hardware allocation, and request management.
Incorrect! Try again.
23Two Python AI projects require incompatible versions of the same library. What is the most appropriate way to prevent dependency conflicts?
Python ecosystem
Medium
A.Rename the imported library in one project
B.Install both versions in the operating-system folder
C.Use one global installation for both projects
D.Create a separate virtual environment for each project
Correct Answer: Create a separate virtual environment for each project
Explanation:
Separate virtual environments isolate dependencies, allowing each project to use the library versions it requires.
Incorrect! Try again.
24A data scientist wants teammates to reproduce the Python environment used to train a model. Which artifact is most directly useful?
Python ecosystem
Medium
A.A document listing variable names
B.A dependency file with pinned package versions
C.A folder containing only prediction results
D.A screenshot of the notebook output
Correct Answer: A dependency file with pinned package versions
Explanation:
Pinned dependencies record exact package versions, reducing differences between development and reproduction environments.
Incorrect! Try again.
25A researcher frequently changes a neural network during experiments and wants Python-like debugging with immediate execution. Which choice is most suitable?
TensorFlow and PyTorch
Medium
A.Hugging Face Datasets alone
B.TensorFlow Lite for mobile inference
C.A vector database query engine
D.PyTorch with eager execution
Correct Answer: PyTorch with eager execution
Explanation:
PyTorch's eager execution makes dynamic experimentation and familiar Python debugging convenient during model development.
Incorrect! Try again.
26A trained TensorFlow model must run locally on a mobile device with limited memory. Which deployment option is designed for this use case?
TensorFlow and PyTorch
Medium
A.TensorFlow Lite
B.Hugging Face Spaces
C.TensorBoard
D.PyTorch DataLoader
Correct Answer: TensorFlow Lite
Explanation:
TensorFlow Lite is designed to optimize and execute models on mobile, embedded, and other resource-constrained devices.
Incorrect! Try again.
27A developer needs to build a sentiment classifier quickly using an existing transformer model. Which Hugging Face feature offers the most direct starting point?
Hugging Face
Medium
A.A TensorBoard callback
B.An Ollama model manifest
C.A task-specific pipeline
D.A vector index partition
Correct Answer: A task-specific pipeline
Explanation:
A Hugging Face pipeline combines preprocessing, model inference, and output processing for tasks such as sentiment analysis.
Incorrect! Try again.
28Before using a model downloaded from the Hugging Face Hub in a commercial product, what should a development team verify first?
Hugging Face
Medium
A.The color theme of the model page
B.The alphabetical order of model tags
C.The number of files in the repository
D.The model license and usage restrictions
Correct Answer: The model license and usage restrictions
Explanation:
Model licenses may restrict commercial use, redistribution, or modification, so they must be checked before adoption.
Incorrect! Try again.
29A hospital wants employees to summarize sensitive notes without sending them to an external AI provider. When suitable hardware and governance are available, why might Ollama be useful?
Ollama
Medium
A.It can run supported language models locally
B.It converts unstructured notes into relational tables
C.It guarantees compliance with all health regulations
D.It automatically anonymizes every medical record
Correct Answer: It can run supported language models locally
Explanation:
Ollama supports local model execution, which can reduce external data transmission. Privacy controls and regulatory compliance still require separate measures.
Incorrect! Try again.
30A large model runs too slowly on a developer's laptop through Ollama. Which change is most likely to improve local inference feasibility while preserving the same general task?
Ollama
Medium
A.Increase the prompt length substantially
B.Duplicate the model files on disk
C.Disable all input preprocessing
D.Choose a smaller quantized model
Correct Answer: Choose a smaller quantized model
Explanation:
A smaller quantized model generally requires less memory and computation, making local inference faster and more practical.
Incorrect! Try again.
31An assistant must answer a question by retrieving company policies, inserting relevant passages into a prompt, and calling a language model. What role can LangChain play?
LangChain
Medium
A.Training the language model from random weights
B.Orchestrating retrieval and model-call components
C.Replacing the policy documents with embeddings
D.Providing specialized GPU hardware for inference
Correct Answer: Orchestrating retrieval and model-call components
Explanation:
LangChain can connect retrievers, prompt templates, models, and output processing into a coordinated application workflow.
Incorrect! Try again.
32A LangChain agent can call tools that send emails and modify customer records. Which design most effectively reduces the risk of harmful actions?
LangChain
Medium
A.Store longer conversation histories by default
B.Increase the model's temperature for flexibility
C.Allow every tool to accept unrestricted arguments
D.Require approval for high-impact tool calls
Correct Answer: Require approval for high-impact tool calls
Explanation:
Human approval and restricted permissions provide control before an agent performs consequential or irreversible actions.
Incorrect! Try again.
33A search system stores document embeddings and receives a query embedding. What does the vector database primarily use to find relevant documents?
Vector databases: conceptual overview
Medium
A.Creation time of each document record
B.Equality between query and document filenames
C.Frequency of database backup operations
D.Similarity between query and document vectors
Correct Answer: Similarity between query and document vectors
Explanation:
Vector databases retrieve nearby embeddings according to a similarity or distance measure, such as cosine similarity.
Incorrect! Try again.
34An enterprise search application must return semantically similar documents, but only from the user's department. Which query strategy is most appropriate?
Vector databases: conceptual overview
Medium
A.Keyword sorting without access-control metadata
B.Exact embedding matching without department filters
C.Vector similarity search with metadata filtering
D.Random sampling followed by manual selection
Correct Answer: Vector similarity search with metadata filtering
Explanation:
Similarity search identifies semantically related content, while metadata filtering restricts results to the authorized department.
Incorrect! Try again.
35A fraud-detection dataset contains only 1% fraudulent transactions. Why can accuracy alone be a misleading evaluation metric?
Artificial Intelligence development workflow
Medium
A.A model can score 99% by predicting every case as legitimate
B.A balanced dataset is required before accuracy can be computed
C.Accuracy always assigns greater weight to fraudulent cases
D.Accuracy cannot be calculated for binary classification tasks
Correct Answer: A model can score 99% by predicting every case as legitimate
Explanation:
With severe class imbalance, high accuracy may hide failure on the minority class. Precision, recall, and related metrics provide additional insight.
Incorrect! Try again.
36A recommendation model performs well initially, but its quality declines after customer preferences change. Which workflow practice best addresses this problem?
Artificial Intelligence development workflow
Medium
A.Evaluate only the application's response time
B.Remove validation data from future experiments
C.Keep the original model unchanged indefinitely
D.Monitor production drift and schedule reevaluation
Correct Answer: Monitor production drift and schedule reevaluation
Explanation:
Monitoring can detect changes in data or model performance, enabling timely evaluation, retraining, or replacement.
Incorrect! Try again.
37An AI assistant must interpret a chart, read its caption, and answer a spoken question about both. Which future AI direction is most relevant?
Future trends in Artificial Intelligence
Medium
A.Multimodal model integration
B.Manual feature encoding only
C.Text-only database normalization
D.Single-format keyword indexing
Correct Answer: Multimodal model integration
Explanation:
Multimodal systems combine information from formats such as images, text, and audio to produce a unified response.
Incorrect! Try again.
38A manufacturer wants an AI system to inspect products with low latency even when internet connectivity is unreliable. Which trend best supports this goal?
Future trends in Artificial Intelligence
Medium
A.Centralized cloud-only inference
B.Longer prompt construction
C.Manual database replication
D.Edge AI deployment
Correct Answer: Edge AI deployment
Explanation:
Edge AI runs models near the data source, reducing network dependence and often improving response latency.
Incorrect! Try again.
39Which capability would provide stronger evidence of Artificial General Intelligence than of a narrow AI system?
Artificial General Intelligence
Medium
A.Answering questions from one curated product manual
B.Optimizing routes within one predefined road network
C.Transferring knowledge across many unfamiliar task domains
D.Classifying one fixed collection of medical images
Correct Answer: Transferring knowledge across many unfamiliar task domains
Explanation:
AGI is generally associated with broad, adaptable intelligence that can transfer learning and reasoning across diverse tasks and domains.
Incorrect! Try again.
40A company wants to reduce the environmental impact of an AI service without removing the service. Which action is most directly aligned with Sustainable AI?
Sustainable AI
Medium
A.Retrain the full model after every user interaction
B.Retain duplicate datasets in multiple unused regions
C.Use a smaller efficient model and carbon-aware scheduling
D.Increase model size for every type of request
Correct Answer: Use a smaller efficient model and carbon-aware scheduling
Explanation:
Efficient models reduce computational demand, while carbon-aware scheduling can shift flexible workloads toward times with cleaner electricity.
Incorrect! Try again.
41A team can reproduce a model's Python packages from a lockfile, but inference outputs differ across machines using the same input and checkpoint. One machine uses a different GPU architecture and CUDA/cuDNN stack. Which action most directly addresses this reproducibility gap?
Artificial Intelligence development ecosystem
Hard
A.Replace the package lockfile with a list containing only top-level Python dependencies
B.Pin the complete runtime image, GPU libraries, framework build, and deterministic execution settings
C.Increase the inference batch size until numerical differences become statistically insignificant
D.Store only the model weights and regenerate the Python environment for each deployment
Correct Answer: Pin the complete runtime image, GPU libraries, framework build, and deterministic execution settings
Explanation:
A Python lockfile does not control GPU kernels, framework binaries, or nondeterministic operations. Reproduibility requires pinning the broader execution environment and configuring deterministic algorithms where supported.
Incorrect! Try again.
42A CPU-bound Python preprocessing function executes pure Python loops and cannot keep a GPU training job supplied with data. Profiling confirms that storage is not the bottleneck. Which change is most likely to improve throughput?
Python ecosystem
Hard
A.Call the preprocessing function from an asynchronous event loop with more concurrent tasks
B.Run preprocessing in multiple processes and transfer prepared batches through bounded queues
C.Disable garbage collection permanently so that Python loops execute outside the interpreter lock
D.Run preprocessing in additional threads that share the same CPython interpreter
Correct Answer: Run preprocessing in multiple processes and transfer prepared batches through bounded queues
Explanation:
Pure Python CPU-bound threads are constrained by CPython's Global Interpreter Lock. Separate processes can execute on multiple cores, while bounded queues provide backpressure and limit memory growth.
Incorrect! Try again.
43A PyTorch model contains dropout and batch-normalization layers. An engineer wraps inference in torch.no_grad(), yet repeated predictions remain inconsistent and batch-normalization statistics continue to change. What is missing?
TensorFlow and PyTorch
Hard
A.Calling model.eval() before inference
B.Setting every parameter's gradient to zero manually
C.Recreating the optimizer without momentum and loading its state after each prediction
D.Calling model.zero_grad() before inference
Correct Answer: Calling model.eval() before inference
Explanation:
torch.no_grad() disables gradient recording but does not change layer behavior. model.eval() switches dropout and batch normalization to inference semantics.
Incorrect! Try again.
44A custom training loop must compute per-example gradients for a loss and then differentiate a regularizer built from those gradients. Which capability is fundamentally required?
B.Mixed-precision inference with automatic casting and static loss scaling
C.A distributed parameter server that computes ordinary first-order gradients on remote workers
D.Higher-order automatic differentiation with a retained or nested gradient graph
Correct Answer: Higher-order automatic differentiation with a retained or nested gradient graph
Explanation:
Differentiating a quantity constructed from gradients requires the original gradient computation to remain differentiable. This is handled through higher-order autodiff, such as nested tapes or a retained computation graph.
Incorrect! Try again.
45A production service loads a model and tokenizer from the same Hugging Face repository name. After the repository owner updates the default branch, token IDs change while the service still uses cached model weights. What is the strongest preventive measure?
Hugging Face
Hard
A.Pin both model and tokenizer artifacts to the same immutable commit revision
B.Download the tokenizer from the default branch and reconstruct missing tokens from model embeddings
C.Clear the artifact cache whenever the service process is restarted
D.Pin only the model configuration because it defines the vocabulary size
Correct Answer: Pin both model and tokenizer artifacts to the same immutable commit revision
Explanation:
A shared repository name does not guarantee that separately resolved artifacts have matching versions. Pinning both artifacts to one immutable revision preserves their vocabulary and configuration contract.
Incorrect! Try again.
46A decoder-only Hugging Face model is batch-generating continuations from prompts of unequal length. With right padding, the system selects logits from the final padded position for shorter prompts and produces degraded output. Which correction best preserves batched generation semantics?
Hugging Face
Hard
A.Use random padding token IDs and average logits across all padded positions
B.Keep right padding but remove the attention mask so padding participates equally
C.Truncate every prompt to its first token, generate independently, and append the removed context afterward
D.Use left padding with a valid pad token and supply the corresponding attention mask
Correct Answer: Use left padding with a valid pad token and supply the corresponding attention mask
Explanation:
For common decoder-only generation implementations, left padding places each prompt's last real token at the shared final position. The attention mask prevents pad tokens from being treated as context.
Incorrect! Try again.
47An Ollama deployment uses the same quantized model weights in two custom model definitions, but one definition consistently follows chat instructions better. Hardware and generation parameters are identical. Which difference most plausibly explains the result?
Ollama
Hard
A.The model definitions apply different prompt templates or system-message formatting
B.The model definitions store their blobs under different content-addressed filenames
C.One definition converts every quantized tensor back to full precision before each token is generated
D.The Ollama client sends requests through different local TCP source ports
Correct Answer: The model definitions apply different prompt templates or system-message formatting
Explanation:
Instruction-tuned models depend on specific role delimiters and prompt formats. Different templates can materially change behavior even when weights and sampling parameters are identical.
Incorrect! Try again.
48A LangChain retrieval pipeline must stream model tokens, preserve request-specific metadata, and avoid blocking the event loop while calling an asynchronous vector store. Which design is most appropriate?
LangChain
Hard
A.Wrap the entire synchronous chain in one global lock and invoke it from every request
B.Store request metadata in module-level variables that callbacks read during streaming
C.Start a new event loop inside each retriever call and synchronously wait for all generated tokens before returning
D.Compose async-capable runnables and propagate configuration through the runnable invocation
Correct Answer: Compose async-capable runnables and propagate configuration through the runnable invocation
Explanation:
Async-capable runnable composition preserves nonblocking execution and streaming. Passing request context through invocation configuration avoids unsafe global state.
Incorrect! Try again.
49An agent can call a tool that executes database queries. Retrieved documents may contain malicious text telling the agent to ignore its policy and invoke that tool. Which control most directly limits the resulting security risk?
LangChain
Hard
A.Increase the model temperature so malicious instructions are less consistently followed
B.Enforce tool permissions and validate structured arguments outside the language model
C.Place retrieved text after the user's question so it has lower positional importance
D.Ask the model to inspect its own hidden reasoning and certify that every generated query is harmless
Correct Answer: Enforce tool permissions and validate structured arguments outside the language model
Explanation:
Prompt instructions are not a security boundary. Authorization, argument validation, query restrictions, and least-privilege execution must be enforced by deterministic code outside the model.
Incorrect! Try again.
50A vector database uses cosine similarity. All stored vectors and the query vector are normalized to unit length. Which ranking statement is correct?
Vector databases: conceptual overview
Hard
A.Cosine ranking becomes independent of the angle between vectors after normalization
B.Euclidean ranking is equivalent only when every vector has zero mean and every coordinate has unit variance
C.Ranking by cosine similarity is equivalent to ranking by largest Manhattan distance
D.Ranking by cosine similarity is equivalent to ranking by smallest squared Euclidean distance
Correct Answer: Ranking by cosine similarity is equivalent to ranking by smallest squared Euclidean distance
Explanation:
For unit vectors, . Maximizing cosine similarity therefore produces the same ordering as minimizing squared Euclidean distance.
Incorrect! Try again.
51A company replaces its embedding model with one having the same output dimension, then continues querying an index containing vectors from the old model. Retrieval quality collapses. Why does matching dimension not prevent this?
Vector databases: conceptual overview
Hard
A.The new model necessarily uses Euclidean distance while every old embedding model necessarily uses cosine distance
B.The two models can encode meaning in incompatible vector spaces despite equal dimensionality
C.Approximate nearest-neighbor indexes support only one query vector during their lifetime
D.Equal-dimensional embeddings must be byte-identical unless the text corpus has changed
Correct Answer: The two models can encode meaning in incompatible vector spaces despite equal dimensionality
Explanation:
Vector dimensions are only coordinates within a learned representation space. Different models can assign incompatible geometry to those coordinates, so documents generally must be re-embedded and re-indexed.
Incorrect! Try again.
52A fraud model is evaluated using random train-test splitting over transactions. The same customers appear in both sets, and each customer's behavior is highly stable. Offline performance is excellent but performance on newly acquired customers is poor. Which evaluation redesign best estimates the deployment scenario?
Artificial Intelligence development workflow
Hard
A.Train on the complete dataset and estimate generalization from the model's average training loss
B.Split by customer identity and preserve a later time window for final testing
C.Randomly reshuffle individual transactions with a different seed before each evaluation
D.Oversample transactions from customers that already occur in both partitions
Correct Answer: Split by customer identity and preserve a later time window for final testing
Explanation:
Grouping by customer prevents identity leakage, while a temporal holdout tests future behavior. Together they better approximate predictions for unseen customers after deployment.
Incorrect! Try again.
53A model's online accuracy declines, but the marginal distribution of each monitored input feature appears unchanged. Which investigation can still reveal a meaningful form of drift?
Artificial Intelligence development workflow
Hard
A.Compare only the compressed sizes of the old and new feature files
B.Test changes in joint feature relationships and in the conditional relationship between inputs and labels
C.Increase the alert threshold and wait until at least one feature's arithmetic mean changes substantially
D.Conclude that drift is impossible because all univariate feature distributions are stable
Correct Answer: Test changes in joint feature relationships and in the conditional relationship between inputs and labels
Explanation:
Stable marginals do not imply a stable joint distribution or stable . Correlation shifts and concept drift can reduce accuracy without obvious univariate changes.
Incorrect! Try again.
54A benchmark reports that a new autonomous agent completes 80% of tasks, but the benchmark allows unlimited retries and excludes API charges, latency, and human recovery effort. Which conclusion is best supported?
Future trends in Artificial Intelligence
Hard
A.The agent is production-ready because task completion exceeds a simple majority
B.The reported completion rate is insufficient to establish practical agent reliability or efficiency
C.Unlimited retries make the benchmark stricter than real deployment in every relevant respect
D.The result proves that scaling the model will eliminate tool failures without changes to evaluation or orchestration
Correct Answer: The reported completion rate is insufficient to establish practical agent reliability or efficiency
Explanation:
A useful agent evaluation must account for retries, cost, latency, failure severity, and recovery. Completion rate alone can hide brittle or economically impractical behavior.
Incorrect! Try again.
55An edge device must run a multimodal assistant with intermittent connectivity, strict privacy requirements, and limited memory. Which architecture best reflects likely near-term AI deployment trends?
Future trends in Artificial Intelligence
Hard
A.Run several full-precision frontier models concurrently on the device for majority voting
B.Use a compact local model for routine tasks and selectively escalate permitted cases to a larger remote model
C.Send every raw sensor stream to one remote model and retain no local inference capability
D.Disable all model compression because quantization always increases memory use and guarantees lower throughput
Correct Answer: Use a compact local model for routine tasks and selectively escalate permitted cases to a larger remote model
Explanation:
Hybrid inference can provide low latency, privacy, and offline capability locally while using remote capacity only for harder, policy-approved cases.
Incorrect! Try again.
56A system exceeds human performance on thousands of benchmark tasks but requires task-specific fine-tuning and cannot transfer knowledge to unfamiliar domains without new labeled data. Which claim is most defensible?
Artificial General Intelligence
Hard
A.The system cannot be intelligent because any use of supervised data invalidates intelligence
B.The system is necessarily AGI because the number of benchmarks exceeds one thousand
C.The system is AGI only if its parameter count exceeds the combined number of neurons in all benchmark authors' brains
D.Broad benchmark superiority alone does not establish domain-general adaptive intelligence
Correct Answer: Broad benchmark superiority alone does not establish domain-general adaptive intelligence
Explanation:
AGI usually implies robust transfer, adaptation, and competence across unfamiliar domains. High performance across a fixed benchmark suite can result from specialization or extensive task coverage.
Incorrect! Try again.
57Which evaluation design most strongly tests whether an alleged AGI can generalize rather than reproduce memorized benchmark patterns?
Artificial General Intelligence
Hard
A.Let the system choose previously published questions, discard failed attempts, and report the best answer per category
B.Repeat public benchmark questions that have circulated online for several years
C.Measure only next-token loss on a random sample of the system's training corpus
D.Use newly constructed hidden tasks requiring cross-domain transfer and auditable interaction traces
Correct Answer: Use newly constructed hidden tasks requiring cross-domain transfer and auditable interaction traces
Explanation:
Hidden, novel tasks reduce contamination risk, while cross-domain transfer tests adaptable competence. Interaction traces help distinguish successful strategies from leakage or uncontrolled external assistance.
Incorrect! Try again.
58Two data centers run the same training job with identical energy consumption. Center A reports lower operational carbon emissions than Center B. Which factor can validly explain the difference?
Sustainable AI
Hard
A.Center A excludes model checkpoints from the parameter count even though parameter-count conventions directly determine grid emissions
B.Center A records energy in kilowatt-hours while Center B records the same energy in joules
C.Center A's electricity supply has lower carbon intensity during the job
D.Center A uses larger batches, which mathematically forces its energy consumption to have zero emissions
Correct Answer: Center A's electricity supply has lower carbon intensity during the job
Explanation:
Operational emissions are approximately energy use multiplied by the electricity supply's carbon intensity. Equal energy use can therefore produce different emissions across locations or times.
Incorrect! Try again.
59A team compares two language models. Model X uses less inference energy per request, but its lower accuracy causes users to retry more often. What is the most appropriate sustainability metric?
Sustainable AI
Hard
A.Expected energy or emissions per successfully completed task
B.Energy consumed by one forward pass regardless of task outcome
C.Parameter count divided by the maximum advertised context length
D.Training emissions alone, allocated equally to every possible request whether or not the model is ever deployed
Correct Answer: Expected energy or emissions per successfully completed task
Explanation:
Per-request efficiency can be misleading when failures trigger retries. Measuring successful task completion incorporates both resource use and delivered utility.
Incorrect! Try again.
60An AI service pulls an unpinned model artifact containing custom loading code from a public registry during every deployment. Which combination most directly reduces software supply-chain risk?
Artificial Intelligence development ecosystem
Hard
A.Pin an immutable revision, verify its digest, review custom code, and restrict its runtime privileges
B.Rename the downloaded artifact and store it in a directory excluded from vulnerability scans
C.Use the repository's latest branch so security changes are always adopted without review
D.Grant the loading process administrative access so it can automatically repair any dependency or permission problem
Correct Answer: Pin an immutable revision, verify its digest, review custom code, and restrict its runtime privileges
Explanation:
Integrity verification, immutable versioning, code review, and least privilege address artifact substitution and malicious code execution. A mutable latest version is not a trustworthy deployment boundary.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →