Q4Multiple correct3 Marks22 Dec 2024
Consider the following snippet of code: some_word is a string variable that has already been defined. The output of the code is:
True
True
Which of the following statements are True regarding the above code?
```
def has_something(word):
s = "aeiou"
for i in range(len(word) - 1):
if word[i] in s and word[i+1] in s:
return True
return False
if len(some_word) >= 3:
print(True)
print(has_something(some_word))
```