Bird
Raised Fist0
LangChainframework~20 mins

What is a chain in LangChain - Practice Questions & Exercises

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Challenge - 5 Problems
🎖️
LangChain Chain Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding the role of a chain in LangChain
What best describes a chain in LangChain?
AA database where LangChain stores all user data.
BA single function that returns a fixed string regardless of input.
CA sequence of steps that process inputs and outputs to perform a task.
DA graphical user interface component for LangChain apps.
Attempts:
2 left
💡 Hint
Think about how LangChain connects multiple actions to solve problems.
component_behavior
intermediate
1:30remaining
Chain output behavior with multiple steps
If a LangChain chain has three steps where each step adds a word to a sentence, what will the final output be after input 'Hello'?
LangChain
Step 1: adds 'world'
Step 2: adds 'from'
Step 3: adds 'LangChain'
A"Hello world LangChain from"
B"Hello from world LangChain"
C"LangChain from world Hello"
D"Hello world from LangChain"
Attempts:
2 left
💡 Hint
Each step adds a word in order, building the sentence.
📝 Syntax
advanced
2:00remaining
Identifying correct chain creation syntax in LangChain
Which option correctly creates a simple LangChain chain that takes input and returns it unchanged?
LangChain
Assume LangChain Python SDK is imported and available.
Achain = Chain(lambda input: input)
Bchain = RunnableLambda(lambda x: x)
Cchain = LLMChain(llm=lambda x: x)
Dchain = SimpleSequentialChain(chains=[lambda x: x])
Attempts:
2 left
💡 Hint
Look for the class designed for simple function chains.
🔧 Debug
advanced
2:00remaining
Debugging a chain that fails to pass output correctly
Given this chain code snippet, why does the final output not include the expected appended text? chain = RunnableLambda(lambda x: x + ' world') result = chain.invoke('Hello') print(result)
AThe lambda function correctly appends text; the code works as expected.
BThe lambda function is missing a return statement.
CRunnableLambda does not have an invoke method.
DThe input 'Hello' is not a string, causing a TypeError.
Attempts:
2 left
💡 Hint
Check if the lambda function and method usage are correct.
lifecycle
expert
2:30remaining
Chain lifecycle and state management in LangChain
Which statement best describes how state is managed across steps in a LangChain chain during execution?
AEach step receives the output of the previous step as input, allowing state to flow through the chain.
BAll steps run independently with no shared state or data passing.
CState is stored globally and shared by all chains automatically.
DLangChain chains reset state after each step, so no data is passed forward.
Attempts:
2 left
💡 Hint
Think about how a chain connects multiple steps to complete a task.

Practice

(1/5)
1. What is a chain in LangChain?
easy
A. A single prompt sent to a language model
B. A database used to store language model outputs
C. A sequence of steps linking language model calls to perform a task
D. A tool to visualize language model responses

Solution

  1. Step 1: Understand the purpose of a chain

    A chain connects multiple language model calls and prompts to complete a task step-by-step.
  2. Step 2: Compare options

    Only A sequence of steps linking language model calls to perform a task describes this linking of steps. The other options describe unrelated concepts.
  3. Final Answer:

    A sequence of steps linking language model calls to perform a task -> Option C
  4. Quick Check:

    Chain = linked steps for tasks [OK]
Hint: Chains link multiple steps to solve tasks [OK]
Common Mistakes:
  • Thinking a chain is just one prompt
  • Confusing chains with data storage
  • Assuming chains are visualization tools
2. Which of the following is the correct way to create a simple chain in LangChain?
easy
A. chain = LLMChain(llm=llm, prompt=prompt)
B. chain = Chain(llm, prompt)
C. chain = create_chain(llm, prompt)
D. chain = LLMChain(prompt)

Solution

  1. Step 1: Recall LangChain syntax for creating a simple chain

    The correct syntax uses named parameters like llm= and prompt= when creating an LLMChain.
  2. Step 2: Check each option

    chain = LLMChain(llm=llm, prompt=prompt) matches the correct syntax. The other options use incorrect function or class names or miss the llm parameter.
  3. Final Answer:

    chain = LLMChain(llm=llm, prompt=prompt) -> Option A
  4. Quick Check:

    Use named parameters for LLMChain [OK]
Hint: Use named parameters when creating chains [OK]
Common Mistakes:
  • Omitting required parameters
  • Using wrong class or function names
  • Passing parameters without names
3. Given this code snippet, what will be the output of result?
from langchain.chains import LLMChain
llm = SomeLLM()
prompt = "Translate English to French: {text}"
chain = LLMChain(llm=llm, prompt=prompt)
result = chain.run({"text": "Hello"})
medium
A. "Bonjour"
B. "Hello"
C. An error because of missing input
D. "Translate English to French: Hello"

Solution

  1. Step 1: Understand what the chain does

    The chain uses the prompt to translate English text to French by calling the language model with the input text.
  2. Step 2: Analyze the input and expected output

    The input text is "Hello", so the chain should return the French translation "Bonjour".
  3. Final Answer:

    "Bonjour" -> Option A
  4. Quick Check:

    Chain translates input text correctly [OK]
Hint: Chain output matches prompt task with input [OK]
Common Mistakes:
  • Expecting the original text as output
  • Confusing prompt string with output
  • Assuming missing input causes error
4. Identify the error in this LangChain code snippet:
from langchain.chains import LLMChain
llm = SomeLLM()
prompt = "Summarize: {text}"
chain = LLMChain(llm=llm)
result = chain.run({"text": "This is a long article."})
medium
A. Calling run() without arguments
B. Incorrect input dictionary key
C. Using LLMChain instead of ComplexChain
D. Missing prompt parameter when creating the chain

Solution

  1. Step 1: Check chain creation parameters

    The chain is created without the required prompt parameter, which is necessary for the chain to work.
  2. Step 2: Verify input and method calls

    The input dictionary key matches the prompt placeholder, and run() is called with arguments, so no error there.
  3. Final Answer:

    Missing prompt parameter when creating the chain -> Option D
  4. Quick Check:

    Prompt is required when creating a chain [OK]
Hint: Always provide prompt when creating a chain [OK]
Common Mistakes:
  • Forgetting to pass prompt parameter
  • Assuming input keys can be arbitrary
  • Calling run() without inputs
5. You want to build a LangChain that first translates English text to French, then summarizes the French text. Which approach correctly uses chains to achieve this?
hard
A. Call the language model twice manually without chains
B. Create two chains: one for translation, one for summarization, then link them sequentially
C. Use a single chain with a prompt that asks for translation and summary at once
D. Create a chain that only summarizes English text directly

Solution

  1. Step 1: Understand chaining multiple tasks

    To perform two steps in order, create separate chains for each task and link them so output of first is input to second.
  2. Step 2: Evaluate options for chaining

    Create two chains: one for translation, one for summarization, then link them sequentially correctly describes linking two chains sequentially. Use a single chain with a prompt that asks for translation and summary at once tries to do both in one prompt, which is less modular. Call the language model twice manually without chains skips chains. Create a chain that only summarizes English text directly misses translation step.
  3. Final Answer:

    Create two chains: one for translation, one for summarization, then link them sequentially -> Option B
  4. Quick Check:

    Use multiple linked chains for multi-step tasks [OK]
Hint: Link chains sequentially for multi-step tasks [OK]
Common Mistakes:
  • Trying to do multiple tasks in one prompt
  • Not linking chain outputs properly
  • Skipping chain usage for multi-step flows