What will be the output of the following Python code? s1 = {1, 2, 3, 4, 5} s2 = {4, 5, 6, 7, 8} print(len(s1 | s2)) a) 5 b) 8 c) 10 d) 13
6
2
10
2K
0