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

Exam PCAP-31-03 All Questions

View all questions & answers for the PCAP-31-03 exam

Exam PCAP-31-03 topic 1 question 3 discussion

Actual exam question from Python Institute's PCAP-31-03
Question #: 3
Topic #: 1
[All PCAP-31-03 Questions]

A Python package named pypack includes a module named pymod.py which contains a function named pyfun().
Which of the following snippets will let you invoke the function? (Choose two.)

  • A. from pypack.pymod import pyfun
    pyfun()
  • B. import pypack
    pymod.pyfun()
  • C. from pypack import *
    pyfun()
  • D. import pypack
    import pypack.pymod
    pypack.pymod.pyfun()
Show Suggested Answer Hide Answer
Suggested Answer: AD 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Dave304409
4 months, 3 weeks ago
Selected Answer: AD
is correct
upvoted 1 times
...
DKAT2023
5 months ago
A and D
upvoted 1 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 ...