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

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

Which of the following expressions evaluate to True? (Choose two.)

  • A. len("""
    """) > 0
  • B. len('\'') == 1
  • C. ord("z") - ord("Z") == ord("0")
  • D. chr(ord('a') + 1) == 'B'
Show Suggested Answer Hide Answer
Suggested Answer: AB 🗳️

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
JeyTlenJey
4 months ago
Selected Answer: AB
A,B correct print("A.",len(""" """)>0,len(""" """)) #True print("B.", len('\'') == 1) #True print("C.", ord("z") - ord("Z") == ord("0"), ord("z") , ord("Z") , ord("0")) #False 122 90 48 print("D.", chr(ord('a') + 1) == 'B', chr(ord('a') + 1)) #False, b
upvoted 1 times
...
Dave304409
4 months ago
Selected Answer: AB
is correct
upvoted 1 times
...
kstr
4 months, 2 weeks ago
AB correct tested
upvoted 1 times
...
DKAT2023
4 months, 2 weeks ago
Selected Answer: AB
A and B are corrects, C should be : print(ord("z") - ord("Z") == ord(' ')) , D should be : chr(ord('a')+1)='b'
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 ...