Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam PCAP topic 1 question 129 discussion

Actual exam question from Python Institute's PCAP
Question #: 129
Topic #: 1
[All PCAP Questions]

With regards to the directory structure below, select the proper forms of the directives in order to import module_b. (Choose two.)

  • A. from pyback.upper import module_b
  • B. import pyback.upper.module_b
  • C. import upper.module_b
  • D. import module_b
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️
Reference:
https://realpython.com/python-import/

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
macxsz
Highly Voted 1 year, 11 months ago
Selected Answer: A
A. from pyback.upper import module_b B. import pyback.upper.module_b
upvoted 12 times
...
seaverick
Most Recent 2 months, 2 weeks ago
Selected Answer: A
import pypack.upper.module_b #True #import upper.module_b #ModuleNotFoundError: No module named 'upper' from pypack.upper import module_b #import module_b #ModuleNotFoundError: No module named 'module_b' Ans -> AB
upvoted 1 times
...
DezzoPalYeah
6 months, 2 weeks ago
Answer is AB.
upvoted 1 times
...
ivanbicalho
1 year, 1 month ago
It should be AB, the question is asking us to choose two, but the system is considering a solo answer wrongly.
upvoted 1 times
...
Nenggg
1 year, 4 months ago
Selected Answer: A
A. from pyback.upper import module_b B. import pyback.upper.module_b
upvoted 1 times
...
rotimislaw
1 year, 5 months ago
Selected Answer: B
A. from pyback.upper import module_b B. import pyback.upper.module_b
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...