Q10Multiple correct3 Marks24 Dec 2023
Consider the following snippet:
Select all inputs for which this code will print an empty string as output. Each option contains two lines, representing `string1` (first line) and `string2` (second line) respectively.
```
string1 = input()
string2 = input()
# there is no space between the quotes
out = ''
for char in string2:
if char not in string1:
out = out + char
print(out)
```