Q28Multiple correct3 Marks11 Dec 2022
Consider the following function.
```
def interesting(word):
out = "" # there is no space between the quotes
for char in word:
flag = True
for i in range(len(out)):
if out[i] >= char:
out = out[:i] + char + out[i:]
flag = False
break
if flag:
out = out + char
return out == word
```
Select all function calls that return the value True.