What will be the result of compiling and executing Test class?
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. list.add(100);
10. list.add(200);
11. list.add(100);
12. list.add(200);
13. list.remove(new Integer(100));
14.
15. System.out.println(list);
16. }
17. }
Given:


Consider below codes of 2 java files:
1. //Flyable.java
2. package com.sampleproject.oca;
3.
4. public interface Flyable {
5. static int horizontalDegree() { //Line n1
6. return 20;
7. }
8.
9. default void fly() {
10. System.out.println("Flying at " + horizontalDegree() + " degrees."); //Line n2
11. }
12.
13. void land();
14. }
1. //Aeroplane.java
2. package com.sampleproject.oca;
3.
4. public class Aeroplane implements Flyable {
5. public void land() {
6. System.out.println("Landing at " + -Flyable.horizontalDegree() + " degrees."); //Line n3
7. }
8.
9. public static void main(String[] args) {
10. new Aeroplane().fly();
11. new Aeroplane().land();
12. }
13. }
What will be the result of compiling and executing Aeroplane class?
Range of short data type is from -32768 to 32767
Which of the following code segments, written inside main method will compile successfully?
Select 3 options.
Given the code fragment:

© Copyrights Oracledumps 2025. 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.