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 (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
earawiran
Highly Voted 11 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 6 times
...
thewoodsii81
Most Recent 5 months, 1 week 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
7 months, 3 weeks ago
ANS: B
upvoted 1 times
...
Dave304409
9 months, 3 weeks ago
Selected Answer: B
is correct
upvoted 1 times
...
DKAT2023
9 months, 3 weeks ago
B True
upvoted 1 times
...
a4129fd
10 months, 4 weeks ago
B is the right one: True
upvoted 2 times
...
Nikhil_Durgesh
11 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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago