Become Oracle Certified with updated 1Z0-808 exam questions and correct answers
Given:
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?
How many String objects are there in the HEAP memory, when control is at Line 9?
1. package com.udayan.oca;
2.
3. public class Test {
4. public static void main(String[] args) {
5. String s1 = new String("Java"); //Line 3
6. String s2 = "JaVa"; //Line 4
7. String s3 = "JaVa"; //Line 5
8. String s4 = "Java"; //Line 6
9. String s5 = "Java"; //Line 7
10.
11. int i = 1; //Line 9
12.
13. }
14. }
Which statement is true about the switch statement?
Consider below code:
1. package com.udayan.oca;
2.
3. public class Test {
4. public static void main(String[] args) {
5. StringBuilder sb = new StringBuilder();
6. try {
7. for(;;) {
8. sb.append("OCA");
9. }
10. } catch(Exception e) {
11. System.out.println("Exception!!!");
12. }
13. System.out.println("Main ends!!!");
14. }
15. }
What will be the result of compiling and executing Test class?
© 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.