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

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

What is true about Python packages? (Choose two.)

  • A. a package can be stored as a tree of sub-directories/sub-folders
  • B. __pycache__ is the name of a built-in variable
  • C. the __name__ variable content determines the way in which the module was run
  • D. hashbang is the name of a built-in Python function
Show Suggested Answer Hide Answer
Suggested Answer: AC 🗳️

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 week, 6 days ago
Selected Answer: AC
True: Python packages are organized as trees of sub-directories containing modules. False: __pycache__ is a directory for compiled bytecode, not a built-in variable. True: The __name__ variable indicates if a module is run directly ('__main__') or imported. False: Hashbang is a shell directive (#!), not a Python built-in function.
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 ...