We offer the latest 1Z0-808 practice test designed for free and effective online Java SE 8 Programmer I certification preparation. It's a simulation of the real 1Z0-808 exam experience, built to help you understand the structure, complexity, and topics you'll face on exam day.
Given code of Test.java file:1. package com.sampleproject.oca;2. 3. public class Test {4. public static void main(String[] args) {5. try { //outer6. try { //inner7. System.out.println(1/0);8. } catch(ArithmeticException e) {9. System.out.println("INNER");10. } finally {11. System.out.println("FINALLY 1");12. }13. } catch(ArithmeticException e) {14. System.out.println("OUTER");15. } finally {16. System.out.println("FINALLY 2");17. }18. }19. }What will be the result of compiling and executing Test class?
Consider below codes of 3 java files:1. //Super.java2. package com.sampleproject.oca;3. 4. public interface Super {5. String name = "SUPER"; //Line n16. }1. //Sub.java2. package com.sampleproject.oca;3. 4. public interface Sub extends Super { //Line n25. 6. }1. //Test.java2. package com.sampleproject.oca;3. 4. public class Test {5. public static void main(String[] args) {6. Sub sub = null;7. System.out.println(sub.name); //Line n38. }9. Which of the following statements is correct?
Given:What is the result?
Given code:package com.udayan.oca; public class Test { public static void main(String[] args) { /*INSERT*/ arr[1] = 5; arr[2] = 10; System.out.println("[" + arr[1] + ", " + arr[2] + "]"); //Line n1 }}And below statements:1. short arr [] = new short[2];2. byte [] arr = new byte[10];3. short [] arr; arr = new short[3];4. short [2] arr;5. short [3] arr;6. int [] arr = new int[]{100, 100};7. int [] arr = new int[]{0, 0, 0, 0};8. short [] arr = {};9. short [] arr = new short[2]{5, 10};How many above statements can be used to replace /*INSERT*/, such that on execution, code will print [5, 10] on to the console?
Given the code fragment:What is the result?
© Copyrights FreePDFQuestions 2025. All Rights Reserved
We use cookies to ensure that we give you the best experience on our website (FreePDFQuestions). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the FreePDFQuestions.