exam questions

Exam 1z0-809 All Questions

View all questions & answers for the 1z0-809 exam

Exam 1z0-809 topic 1 question 85 discussion

Actual exam question from Oracle's 1z0-809
Question #: 85
Topic #: 1
[All 1z0-809 Questions]

Given:
class UserException extends Exception { }
class AgeOutOfLimitException extends UserException { }
and the code fragment:
class App {
public void doRegister(String name, int age)
throws UserException, AgeOutOfLimitException {
if (name.length () < 6) {
throw new UserException ();
} else if (age >= 60) {
throw new AgeOutOfLimitException ();
} else {
System.out.println("User is registered.");
}
}
public static void main(String[ ] args) throws UserException {
App t = new App ();
t.doRegister("Mathew", 60);
}
}
What is the result?

  • A. User is registered.
  • B. An AgeOutOfLimitException is thrown.
  • C. A UserException is thrown.
  • D. A compilation error occurs in the main method.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
asdfjhfgjuaDCV
4 months, 3 weeks ago
B is the correct answer
upvoted 1 times
...
steefaand
5 months, 3 weeks ago
Selected Answer: B
Answer is B. It is ok that main doesn't declare AgeOutOfLimit since it declares its parent class.
upvoted 1 times
...
mevlt
2 years, 5 months ago
Child exception is not necessary to be declared in method definition. But it is defined, it won't hurt
upvoted 1 times
...
Elena_Corina
2 years, 9 months ago
B tested. Exception in thread "main" AgeOutOfLimitException
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
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.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago