int index = 1; <br /> int [] foo = new int [3]; <br /> int bar = foo [index]; <br /> int baz = bar + index;  <br /> What is the result?()  <p> int index = 1; <br /> int [] foo = new int [3]; <br /> int bar = foo [index]; <br /> int baz = bar + index;  <br /> What is the result?()  </p>
A、A. Baz has the value of 0
B、B. Baz has the value of 1
C、C. Baz has the value of 2
D、D. An exception is thrown.
E、E. The code will not compile.