View the exhibit. Given the code fragment: Which change enables the code to print the
following? James age: 20 Williams age: 32
A.
Replacing line 5 with public static void main (String [] args) throws MissingInfoException,
AgeOutofRangeException {
B.
Replacing line 5 with public static void main (String [] args) throws.Exception {
C.
Enclosing line 6 and line 7 within a try block and adding: catch(Exception e1) { //code
goes here} catch (missingInfoException e2) { //code goes here} catch
(AgeOutofRangeException e3) {//code goes here}
D.
Enclosing line 6 and line 7 within a try block and adding: catch (missingInfoException e2)
{ //code goes here} catch (AgeOutofRangeException e3) {//code goes here}
B
Definitely B
tested
b