public static void search(List<string> list) { <br /> list.clear(); <br /> list.add(”b”); <br /> list.add(”a”); <br /> list.add(”c”); <br /> System.out.println(Collections.binarySearch(list, “a”)); <br /> } <br /> What is the result of calling search with a valid List implementation?()</string>
A、0
B、1
C、a
D、b
E、c
F、The result is undefined.