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

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

Which of the following invocations are valid? (Choose two.)

  • A. 'python'.sorted()
  • B. "python".rindex("th")
  • C. sort("python")
  • D. "python".find("")
Show Suggested Answer Hide Answer
Suggested Answer: BD 🗳️

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 week, 5 days ago
Selected Answer: BD
A. ❌ Invalid – 'python'.sorted() 'sorted' is not a string method; it's a built-in function. → AttributeError B. ✅ Valid – "python".rindex("th") .rindex("th") searches for "th" from the right and returns the index of the first character if found. → "python" → "th" starts at index 2 → Correct C. ❌ Invalid – sort("python") sort() is a list method, not a standalone function. "python" is a string → TypeError or NameError D. ✅ Valid – "python".find("") .find("") returns 0, as the empty string is considered found at the beginning. → Correct
upvoted 1 times
...
flthymcnsty
7 months, 2 weeks ago
Selected Answer: BD
Explanation: The correct answers are: B. "python".rindex("th") The rindex() method finds the last occurrence of a substring in a string and returns its starting index. If the substring is not found, it raises a ValueError. Example:

result = "python".rindex("th")
print(result) # Outputs: 2 D. "python".find("") The find() method returns the lowest index where the specified substring is found.
 An empty string ("") is always considered present in any string, starting at index 0.
 Example:

result = "python".find("")
print(result) # Outputs: 0
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 ...