Given code of Test.java file:
1. package com.sampleproject.oca;
2.
3. abstract class Animal {
4. abstract void jump() throws RuntimeException;
5. }
6.
7. class Deer extends Animal {
8. void jump() { //Line n1
9. System.out.println("DEER JUMPS");
10. }
11.
12. void jump(int i) {
13. System.out.println("DEER JUMPS TO " + i + " FEET");
14. }
15. }
16.
17. public class Test {
18. public static void main(String[] args) {
19. Animal animal = new Deer();
20. ((Deer)animal).jump(); //Line n2
21. ((Deer)animal).jump(5); //Line n3
22. }
23. }
What will be the result of compiling and executing Test class?
Given:

Given the code fragments:


Given the code fragment:

Which of the following method is declared in Predicate
© Copyrights Oracledumps 2026. All Rights Reserved
We use cookies to ensure that we give you the best experience on our website (Oracledumps). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the Oracledumps.