Suppose s is a string with the value "java". What will be assigned to x if you execute the following code? char x = s.charAt(4);
A. 'v'
B. Nothing will be assigned to x, because the execution causes the runtime error StringIndexOutofBoundsException.
C. 'a'