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

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

What is the expected output of the following code?
import sys
import math
b1 = type(dir(math)) is list
b2 = type(sys.path) is list
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 (?) , you can switch to a simple comment.
Switch to a voting comment New
earawiran
Highly Voted 6 months, 1 week ago
Selected Answer: B
import sys import math b1 = type(dir(math)) is list b2 = type(sys.path) is list print(b1 and b2) True
upvoted 5 times
...
thewoodsii81
Most Recent 1 week, 1 day ago
Selected Answer: B
sys.path return a list of the system paths. and is a logical operator. since both b1 and b2 are True then it returns true
upvoted 1 times
...
jarun2024
2 months, 2 weeks ago
ANS: B
upvoted 1 times
...
Dave304409
4 months, 2 weeks ago
Selected Answer: B
is correct
upvoted 1 times
...
DKAT2023
4 months, 3 weeks ago
B True
upvoted 1 times
...
a4129fd
5 months, 3 weeks ago
B is the right one: True
upvoted 2 times
...
Nikhil_Durgesh
6 months ago
Correct Answer : B import sys import math b1 = type(dir(math)) is list b2 = type(sys.path) is list print(b1 and b2) Output : True
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 ...