What will be the output of the following Python code? s1 = {1, 2, 3, 4} s2 = {3, 4, 5, 6} print(s1.intersection(s2)) a) {1, 2} b) {3, 4} c) {5, 6} d) Error
10
2
18
3K
1