Given:13.public static void main(List<String> list){
14.  list.clear();
15.  list.add("b");
16.  list.add("a");
17.  list.add("c");
18.  System.out.println(Collections.binarySearch(list,"a"));
19.}what is the result of calling search with a valid List implementation?
A: 0
B: 1
C: 2
D: a
E: b
F: c
G: The result is undefined.