Question 495 of 511
Modules and PackagesmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is to restructure the code to eliminate circular dependencies by extracting shared logic into a third module. This resolves the ImportError because Python’s module initialization is sequential—when module A begins importing module B, and B immediately tries to import the still-incomplete module A, Python raises an error due to the partially loaded namespace. On the PCAP exam, this question tests your understanding of Python’s import system and the principle of dependency inversion, often appearing as a scenario where lazy imports or moving imports inside functions are tempting but inferior solutions. The best practice for circular import resolution is always architectural: isolate the common functionality that both modules need into a separate, independent module that neither depends on. A common trap is thinking that rearranging import statements or using `importlib` fixes the root cause, but these only mask the design flaw. Memory tip: think “triangle to line”—if A and B form a loop, pull the shared code into C to create a clean, one-way dependency chain.

PCAP Modules and Packages Practice Question

This PCAP practice question tests your understanding of modules and packages. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A team is developing a large Python application with multiple modules. They encounter an ImportError when module A tries to import from module B, and module B tries to import from module A. What is the most likely cause and best practice to resolve this?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "best"

    Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1mediummultiple choice
Study the full Python automation breakdown →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Restructure the code to eliminate circular dependencies by extracting shared logic into a third module.

Option C is correct because circular imports occur when two modules depend on each other at the top level, causing an ImportError due to incomplete module initialization. The best practice is to restructure the code to eliminate the circular dependency, typically by extracting the shared functionality into a third module that both A and B can import without mutual dependence. This approach aligns with Python's module loading mechanism, which executes a module fully before making its names available for import.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Use 'from module import *' to bring all names into the namespace.

    Why it's wrong here

    Worse practice; can cause namespace pollution and still fails on circular import.

  • Use lazy imports (inside functions) to defer the import until runtime.

    Why it's wrong here

    Works but hides design flaws; not best practice for maintainability.

  • Restructure the code to eliminate circular dependencies by extracting shared logic into a third module.

    Why this is correct

    Best practice; removes the circular dependency entirely.

    Clue confirmation

    The clue words "best", "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Move all imports from module A to the bottom of the file.

    Why it's wrong here

    Bottom imports do not change execution order; still circular.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Python Institute often tests the misconception that moving imports or using wildcard imports can fix circular dependencies, when in fact only restructuring the code or using lazy imports (as a temporary workaround) addresses the root cause.

Detailed technical explanation

How to think about this question

Under the hood, Python's import system uses a cache (sys.modules) to track loaded modules; when a circular import occurs, one module may be only partially initialized (e.g., its top-level code hasn't finished executing), so the other module sees an empty or incomplete namespace. In real-world scenarios, such as large frameworks like Django or Flask, circular imports often arise in model relationships or configuration files, and the recommended fix is to use a shared module (e.g., a 'base.py' or 'common.py') or to restructure the design to avoid mutual dependencies.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PCAP practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PCAP practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PCAP question test?

Modules and Packages — This question tests Modules and Packages — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Restructure the code to eliminate circular dependencies by extracting shared logic into a third module. — Option C is correct because circular imports occur when two modules depend on each other at the top level, causing an ImportError due to incomplete module initialization. The best practice is to restructure the code to eliminate the circular dependency, typically by extracting the shared functionality into a third module that both A and B can import without mutual dependence. This approach aligns with Python's module loading mechanism, which executes a module fully before making its names available for import.

What should I do if I get this PCAP question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "best", "most likely". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on PCAP

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Which THREE of the following are recommended techniques to avoid circular imports in Python?

hard
  • A.Manually check sys.modules before importing.
  • B.Use the __all__ variable to control what is exported.
  • C.Restructure the code to move shared functionality into a separate module.
  • D.Use lazy imports inside functions or methods.
  • E.Use absolute imports instead of relative imports.

Why C: Option C is correct because moving shared functionality into a separate module breaks the circular dependency chain at the import level. When two or more modules depend on each other, Python's import system may raise an ImportError or produce partially initialized modules, leading to AttributeError. Restructuring eliminates the mutual dependency by creating a common module that both original modules can import safely.

Keep practising

More PCAP practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This PCAP practice question is part of Courseiva's free Python Institute certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCAP exam.