Which of the following expressions evaluate to True? (Choose two.)
Which of the following expressions evaluate to True? (Choose two.)
The expression 'in' in 'in' evaluates to True because the substring 'in' is found within the string 'in'. The expression 't'.upper() in 'Thames' evaluates to True because 't'.upper() transforms 't' to 'T', which is indeed part of the string 'Thames'.
A, D is correct