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}
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Tatudev
1 year, 1 month agoNate88890123
2 years, 11 months agoNate88890123
2 years, 11 months ago