exam questions

Exam 1z0-809 All Questions

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

Exam 1z0-809 topic 1 question 36 discussion

Actual exam question from Oracle's 1z0-809
Question #: 41
Topic #: 2
[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. AgeOutOfLimitException is thrown.
  • B. An UserException is thrown.
  • C. A main method.
  • D. A compilation error occurs in the
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
adnano1234
Highly Voted 4 years, 6 months ago
AgeOutOfLimitException is thrown
upvoted 7 times
...
asdfjhfgjuaDCV
Most Recent 4 months, 3 weeks ago
Age out of limit exception
upvoted 1 times
...
steefaand
5 months, 3 weeks ago
Selected Answer: A
A is correct without "User is registered" string printed.
upvoted 2 times
...
iSnover
5 months, 3 weeks ago
Selected Answer: A
The answer is A. AgeOutOfLimitException is thrown
upvoted 1 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