Become Oracle Certified with updated 1Z0-808 exam questions and correct answers
Consider below code of Test.java file:
1. package com.sampleproject.oca;
2.
3. public class Test {
4. public static void main(String[] args) {
5. int i = 1;
6. int j = 5;
7. int k = 0;
8. A: while(true) {
9. i++;
10. B: while(true) {
11. j--;
12. C: while(true) {
13. k += i + j;
14. if(i == j)
15. break A;
16. else if (i > j)
17. continue A;
18. else
19. continue B;
20. }
21. }
22. }
23. System.out.println(k);
24. }
25. }
What will be the result of compiling and executing Test class?
Given the code fragment:
What will be the result of compiling and executing Test class?
1. //Test.java
2. package com.udayan.oca;
3.
4. import java.io.FileNotFoundException;
5.
6. public class Test {
7. public static void main(String[] args) {
8. try {
9. System.out.println(1);
10. } catch (NullPointerException ex) {
11. System.out.println("ONE");
12. } catch (FileNotFoundException ex) {
13. System.out.println("TWO");
14. }
15. System.out.println("THREE");
16. }
17. }
Below is the code of Test.java file:
1. package com.udayan.oca;
2.
3. import java.util.ArrayList;
4. import java.util.List;
5.
6. public class Test {
7. public static void main(String [] args) {
8. List
9.
10. list.add(27);
11. list.add(27);
12.
13. list.add(new Integer(27));
14. list.add(new Integer(27));
15.
16. System.out.println(list.get(0) == list.get(1));
17. System.out.println(list.get(2) == list.get(3));
18. }
19. }
What will be the result of compiling and executing Test class?
Consider below code of Test.java file:
1. package com.sampleproject.oca;
2.
3. class Super {
4. public String num = "10"; //Line n1
5. }
6.
7. class Sub extends Super {
8. protected int num = 20; //Line n2
9. }
10.
11. public class Test {
12. public static void main(String[] args) {
13. Super obj = new Sub();
14. System.out.println(obj.num += 2); //Line n3
15. }
16. }
What will be the result of compiling and executing above code?
© Copyrights DumpsCertify 2025. All Rights Reserved
We use cookies to ensure your best experience. So we hope you are happy to receive all cookies on the DumpsCertify.