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

Actual exam question from Python Institute's PCAP-31-03
Question #: 18
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 = 'python'[::2] string = string[-1] + string[-2]

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

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
jarun2024
2 months, 3 weeks ago
Ans : A & B
upvoted 1 times
...
Dave304409
4 months, 3 weeks ago
A, B is correct string = 'python'[::2] print(string) pto R: print(len(string) == 3 ) string = string[-1] + string[-2] print(string) ot print(string[0] == 'o' )
upvoted 2 times
...
DKAT2023
4 months, 3 weeks ago
B is the correct
upvoted 1 times
...
kstr
5 months, 3 weeks ago
Sorry only B: string = 'python'[::2] string = string[-1] + string[-2] print(len(string) == 3 ) print(string[0] == 'o' ) print( string[0] == string[-1] ) print( string is None)
upvoted 2 times
...
kstr
5 months, 3 weeks ago
Only C is True string = 'python'[::2] string = string[-1] + string[-2] print(len(string) == 3 ) print(string[0] == 'o' ) print( string[0] == string[-1] ) print( string is None)
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 ...