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

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

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

  • A. 'abc'.upper() < 'abc'
  • B. '1'+'2' * 2 != '12'
  • C. 3 * 'a' < 'a' * 2
  • D. 11 == '011'
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
Abbribas
1 month, 2 weeks ago
Selected Answer: AB
'abc'.upper() is 'ABC', which is lexicographically less than 'abc' (True). '1' + '2' * 2 becomes '1' + '22' which is '122', not equal to '12' (True). 3 * 'a' is 'aaa', and 'a' * 2 is 'aa'. 'aaa' < 'aa' is False lexicographically. 11 == '011' is False as an integer is never equal to a string.
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 ...