Courseiva

1Z0-1127-25 · topic practice

Fundamentals of Large Language Models practice questions

Practise Oracle Cloud Infrastructure Generative AI Professional 1Z0-1127-25 Fundamentals of Large Language Models practice questions — original exam-style scenarios with answer choices, explanations, and analysis of common mistakes.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Fundamentals of Large Language Models

What the exam tests

What to know about Fundamentals of Large Language Models

Fundamentals of Large Language Models questions test whether you can apply the concept in context, not just recognise a definition.

How the topic appears in realistic exam-style scenarios.

Which detail in the question changes the correct answer.

How to eliminate plausible but wrong options.

How to connect the question back to the wider exam objective.

Watch out for

Common Fundamentals of Large Language Models exam traps

  • Answering from memory before reading the full scenario.
  • Missing a constraint such as cost, availability, security, scope or command context.
  • Choosing a broad answer when the question asks for the most specific fix.
  • Ignoring why the wrong options are tempting.

Practice set

Fundamentals of Large Language Models questions

20 questions · select your answer, then reveal the explanation

Which TWO statements about tokens in large language models are correct?

A company wants to build a retrieval-augmented generation (RAG) system using OCI Generative AI and a vector database. Which model type should they use to convert documents into vector embeddings?

A developer is reviewing the model card for an LLM on OCI Generative AI and notices it was trained on a dataset that is predominantly English. The application will serve users in multiple languages. What is the most likely limitation of using this model without additional steps?

Based on the exhibit, which model is best suited for a conversational chatbot that needs to handle multi-turn dialogues?

Exhibit

Refer to the exhibit.

# OCI CLI output from `oci generative-ai model list`
{
  "data": [
    {
      "id": "ocid1.generativeaimodel.oc1..aaaaaa...",
      "model-name": "cohere.command",
      "capabilities": ["chat", "text-generation"],
      "context-window": 4096
    },
    {
      "id": "ocid1.generativeaimodel.oc1..bbbbbb...",
      "model-name": "cohere.base",
      "capabilities": ["text-generation"],
      "context-window": 8192
    },
    {
      "id": "ocid1.generativeaimodel.oc1..cccccc...",
      "model-name": "cohere.embed",
      "capabilities": ["embeddings"],
      "context-window": null
    }
  ]
}

A developer in the GenAIDevelopers group tries to call the OCI Generative AI inference API but receives an unauthorized error. Which statement best explains the issue?

Exhibit

Refer to the exhibit.

# OCI IAM policy for accessing generative AI models
Allow group GenAIDevelopers to use generative-ai-model-family in compartment ProdCompartment
Allow group GenAIDevelopers to read generative-ai-model in compartment ProdCompartment
Allow group GenAIDevelopers to create generative-ai-inference in compartment ProdCompartment

Based on the exhibit, what is the primary action the developer must take to successfully make the inference request?

Exhibit

Refer to the exhibit.

# Error from OCI Generative AI inference API
{
  "code": "InferenceRequestTooLarge",
  "message": "The prompt plus max_new_tokens exceeds the model's context length of 8192 tokens.",
  "prompt_length": 6000,
  "max_new_tokens": 4000
}

An OCI administrator wants to limit which users can invoke a specific LLM endpoint. Which resource type should be used?

Question 8mediummultiple choice
Study the full Python automation breakdown →

A developer is using the OCI Generative AI Python SDK. They receive a 400 error 'InvalidParameter'. What is the most likely reason?

A machine learning engineer is fine-tuning a model on OCI Data Science and notices that the training loss decreases but then suddenly increases. What is the most likely cause?

Which technique allows an LLM to be adapted to a new task with only a few examples?

Refer to the exhibit. A user in group GenAIGroup cannot see models in the Production compartment using OCI Generative AI. What is the most likely issue?

Exhibit

{
  "statement": "Allow group GenAIGroup to read generative-ai-models in compartment Production",
  "resource": "oci-generativeai:model",
  "compartment": "Production"
}

Refer to the exhibit. A user deployed a custom model via OCI Data Science and registered it in the Model Catalog. They use the correct OCID but get this error. What is the most likely issue?

Exhibit

Error:
{
  "code": "InvalidParameter",
  "message": "The specified model 'my-custom-model' does not exist or you are not authorized to access it."
}

A developer sends this request but receives an error: "modelId not found". Which is the most likely cause?

Exhibit

Refer to the exhibit.

```json
{
  "compartmentId": "ocid1.compartment.oc1..example",
  "modelId": "cohere.command",
  "messages": [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "What is the capital of France?"}
  ],
  "maxTokens": 100,
  "temperature": 0.7,
  "topP": 0.9,
  "frequencyPenalty": 0.0,
  "presencePenalty": 0.0
}
```

The job fails with "InvalidParameter: trainingDatasetUri". What should the administrator check first?

Exhibit

Refer to the exhibit.

```
$ oci ai language fine-tuning-job create \
  --compartment-id ocid1.compartment.oc1..example \
  --model-id cohere.command \
  --training-dataset-uri "oci://bucket@namespace/train.jsonl" \
  --validation-dataset-uri "oci://bucket@namespace/val.jsonl" \
  --parameters '{"numEpochs": 5, "learningRate": 0.0001, "batchSize": 16}' \
  --max-duration-in-minutes 600
```

A startup needs to deploy an LLM for a simple FAQ chatbot on OCI with low latency. Which model choice is most appropriate?

An application using OCI GenAI experiences high response times. Which change will most directly reduce latency?

A developer integrates OCI GenAI into a mobile app to provide product descriptions. The responses sometimes include explanations or questions instead of the requested format. The developer is using a simple prompt: 'Describe product X.' The app expects a single paragraph. Which corrective action should the developer take?

A machine learning team is fine-tuning a 7B parameter Llama 2 model on a custom dataset of 10,000 documents using OCI Data Science and GPU instances. They encounter out-of-memory (OOM) errors during the fine-tuning process. They are using a batch size of 8 and a sequence length of 2048. They cannot increase the GPU memory. Which change should they prioritize to resolve the OOM?

An enterprise wants to deploy a large language model for processing sensitive internal documents. They must ensure that data does not leave their OCI tenancy. Which OCI GenAI deployment option meets this requirement?

A research team is using OCI Data Science and OCI GenAI to build a multilingual chatbot for customer service. They have training data in English, Spanish, and French. The model currently struggles with code-switching—users often mix languages in a single query (e.g., 'Quiero cancel my order'), and the model responds inconsistently, sometimes in English, sometimes mixing incorrectly. The team wants to improve performance on code-switching while maintaining fluency in each language. They have limited compute resources and cannot deploy separate models per language. Which approach should they take?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Fundamentals of Large Language Models sessions

Start a Fundamentals of Large Language Models only practice session

Every question in these sessions is drawn from the Fundamentals of Large Language Models domain — nothing else.

Related practice questions

Related 1Z0-1127-25 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the 1Z0-1127-25 exam test about Fundamentals of Large Language Models?
Fundamentals of Large Language Models questions test whether you can apply the concept in context, not just recognise a definition.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Fundamentals of Large Language Models questions in a focused session?
Yes — the session launcher on this page draws every question from the Fundamentals of Large Language Models domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other 1Z0-1127-25 topics?
Use the topic links above to move to related areas, or go back to the 1Z0-1127-25 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the 1Z0-1127-25 exam covers. They are not copied from any real exam or dump site.