The correct answer is that mypackage is a module file, not a package directory. This is because Python distinguishes between a package—a directory containing an `__init__.py` file—and a module, which is a single `.py` file. When you encounter a "package vs module Python import error," the root cause is often that Python treats a file named `mypackage.py` as a module, so it cannot locate submodules like `mymodule` within it, triggering an `ImportError`. On the Certified Associate Python Programmer PCAP exam, this tests your understanding of Python’s import system and the structural difference between packages and modules—a common trap is assuming any name with a dot implies a package. To avoid this, remember the memory tip: "A package is a folder with `__init__.py`; a module is just a file."
PCAP Modules and Packages Practice Question
This PCAP practice question tests your understanding of modules and packages. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.
Exhibit
Traceback (most recent call last):
File "main.py", line 1, in <module>
from mypackage import mymodule
ImportError: cannot import name 'mymodule' from 'mypackage' (unknown location)
Refer to the exhibit. Which of the following is the most likely cause of this error?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
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.
Traceback (most recent call last):
File "main.py", line 1, in <module>
from mypackage import mymodule
ImportError: cannot import name 'mymodule' from 'mypackage' (unknown location)
A
The __init__.py file in mypackage is empty.
Why wrong: An empty __init__.py is valid; it doesn't prevent importing submodules.
B
There is a circular import between mypackage and mymodule.
Why wrong: Circular imports usually cause partial import or recursion errors, not 'cannot import name' with unknown location.
C
mymodule.py does not exist in mypackage directory.
Why wrong: If mypackage were a package, the error would likely be 'ModuleNotFoundError: No module named mypackage.mymodule'.
D
mypackage is a module file, not a package directory.
If mypackage is a .py file, you cannot import 'mymodule' from it as a submodule.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
mypackage is a module file, not a package directory.
Option D is correct because the error indicates that Python cannot import 'mypackage' as a package. If 'mypackage' is a single module file (e.g., mypackage.py) rather than a directory containing an __init__.py file, Python treats it as a module, not a package. This prevents the expected package-style import of submodules like 'mymodule', causing the ImportError.
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.
✗
The __init__.py file in mypackage is empty.
Why it's wrong here
An empty __init__.py is valid; it doesn't prevent importing submodules.
✗
There is a circular import between mypackage and mymodule.
Why it's wrong here
Circular imports usually cause partial import or recursion errors, not 'cannot import name' with unknown location.
✗
mymodule.py does not exist in mypackage directory.
Why it's wrong here
If mypackage were a package, the error would likely be 'ModuleNotFoundError: No module named mypackage.mymodule'.
✓
mypackage is a module file, not a package directory.
Why this is correct
If mypackage is a .py file, you cannot import 'mymodule' from it as a submodule.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Python Institute often tests the distinction between a package (directory with __init__.py) and a module (single .py file), trapping candidates who assume any directory can be imported as a package without the required __init__.py marker.
Detailed technical explanation
How to think about this question
Under the hood, Python distinguishes between regular packages (directories with __init__.py) and namespace packages (directories without __init__.py, introduced in PEP 420). If 'mypackage' is a .py file, Python's import machinery finds it as a module and does not look for submodules within it, because a module cannot contain submodules. In real-world scenarios, this often happens when a developer accidentally names a script the same as a package they intend to import, causing a name collision.
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.
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: mypackage is a module file, not a package directory. — Option D is correct because the error indicates that Python cannot import 'mypackage' as a package. If 'mypackage' is a single module file (e.g., mypackage.py) rather than a directory containing an __init__.py file, Python treats it as a module, not a package. This prevents the expected package-style import of submodules like 'mymodule', causing the ImportError.
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: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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 →
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.
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.
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.
Sign in to join the discussion.