QuestenaPractice that shows what to review next
Question 19

For string membership, which statements are true? Select all that apply.

  1. `"cat" in "concatenate"` is true.Correct answer
  2. Membership succeeds only for complete words.
  3. Membership looks for a contiguous substring.Correct answer
  4. Membership is an object-identity test.

Explanation

Membership searches for a contiguous run of code points, so `cat` occurs within `concatenate` and the general substring description is accurate. It does not split text into words first or ask whether the two operands are the same object.

Continue with this test

Start practice
Question 19: For string membership, which statements are true? Select… · Python Fundamentals · Questena