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

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

What is the expected output of the following code?

import sys

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

  • A. True
  • B. False
  • C. 0
  • D. None
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
1 month, 2 weeks ago
Selected Answer: B
b1 = type(dir(sys)) is str dir(sys) returns a list of strings, so: type(dir(sys)) → <class 'list'> So b1 = False b2 = type(sys.path[-1]) is str sys.path is a list of strings sys.path[-1] is a string type(sys.path[-1]) → <class 'str'> So b2 = True print(b1 and b2) b1 and b2 → False and True → False
upvoted 1 times
...
DKAT2023
1 year, 1 month ago
Selected Answer: B
b1 type(dir(sys)) is list not str, so False and True = True
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 ...