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

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

Assuming that the snippet below has been executed successfully, which of the following expressions will evaluate to True? (Choose two.)

string = 'SKY'[::-1]
string = string[-1]

  • A. len(string) == 1
  • B. string[0] == 'Y'
  • C. string[0] == string[-1]
  • D. string is None
Show Suggested Answer Hide Answer
Suggested Answer: AC 🗳️

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: AC
'SKY'[::-1] reverses to 'YKS'. string[-1] from 'YKS' gets 'S'. So, string becomes 'S'. len('S') == 1 is True. 'S' == 'S' (from string[0] == string[-1]) is True.
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 ...