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 105 discussion

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

A Python module named pymod.py contains a function named pyfun().

Which of the following snippets will let you invoke the function? (Choose two.)

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

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
Abbribas
1 month, 2 weeks ago
Selected Answer: CD
the two primary and recommended templates for invoking a function from a Python module: import module_name followed by module_name.function_name() from module_name import function_name followed by function_name()
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 ...