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

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

What is the expected output of the following code?

import sys
import math

b1 = type(dir(math)[01]) is str
b2 = type(sys.path[-1]) is str
print(b1 and b2)

  • A. None
  • B. True
  • C. 0
  • D. False
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
2 weeks ago
Selected Answer: B
1. dir(math)[01] dir(math) returns a list of strings (names of attributes in the math module). 01 is interpreted as 1 (Python allows leading zeros for integers in older versions but it's discouraged). So dir(math)[1] is a string, like 'acos'. Therefore, type(...) is str → True ✅ 2. sys.path[-1] sys.path is a list of strings representing module search paths. sys.path[-1] is the last entry (usually a string or empty string). So type(...) is str → True ✅ 3. print(b1 and b2) Both are True, so b1 and b2 → True
upvoted 1 times
...
flthymcnsty
7 months, 3 weeks ago
Selected Answer: B
This will output nothing since it results in a Syntax error due to the 01: SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers It will be B True if the 01 is corrected to just 0 or just 1
upvoted 4 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 ...