Real Java Interview Questions asked in Oracle

Sreenath Ravva, one of the readers of HowToDoInJava, has appeared in an interview in Oracle for a position in the Oracle Enterprise Manager product. The below-listed questions were shared by him so that I can share them with all of you, in hope that it will benefit few of us on any fine day.

I have tried to put links to web pages where you can refer for answers to below interview questions. They may not be enough to cover the topic, but they will give you a start.

1. First Round (Telephonic)

1. Can you please just start telling about yourself and your project?

https://www.youtube.com/watch?v=CumOvDWnUDY

2. What is abstraction and encapsulation in java ?

3. Method Overloading rules? Can we overload the super class method in sub class. Discussion happened with the example.

4. Method Overriding rules?

5. Widening and narrowing in java? Discussion happened with example?

6. Can I have only try block in code?

No. You need either catch block or finally block along with try block, at least. [Till Java 6]

JDK 7 onwards you can use try-with-resources with “optional” catch or finally block.

try (FileInputStream f = new FileInputStream("temp.json")) 
{
    System.out.println("test");
}

7. Threads : producer and consumer problem?

8. Why wait(), notify() and notifyAll() are defined in Object class?

9. Can we override wait() or notify() methods?

In Object.java, methods getClass(), notify(), notifyAll() and three wait() methods are final, so you can’t override them.

10. Difference between wait(), sleep() and yield()?

http://stackoverflow.com/questions/9700871/what-is-difference-between-sleep-method-and-yield-method-of-multi-threading

11. Explain about join() method in thread class

http://stackoverflow.com/questions/18479771/java-multithreading-concept-and-join-method

2. Second Round (Face to Face)

1. Can you just start telling about yourself and your project?

Refer to first question in above list.

2. Have you faced out of memory error? If yes how you fixed ? Tell different scenarios why it comes?

http://stackoverflow.com/questions/37335/how-to-deal-with-java-lang-outofmemoryerror-java-heap-space-error-64mb-heap

3. Database connection leakage?

Google it.

4. Write a program to swap two numbers with out using third variable?

import java.io.*;

public class SwappingNumberWithoutThirdVariable
{
    public static void main(String[] args)throws IOException
    {
        int a = 0 ,b = 1;

        System.out.println("a = "+a);
        System.out.println("b = "+b);

        //Beginning of Swapping
        a = a + b;
        b = a - b;
        a = a - b;
        //End of Swapping

        System.out.println("The numbers after swapping are");
        System.out.println("a = "+a);
        System.out.println("b = "+b);
    }
}

5. Write a program to sort an array and remove duplicates?

http://stackoverflow.com/questions/17967114/how-to-remove-duplicates-from-an-array-in-java

6. Write a program on Singleton?

//howtodoinjava.com/design-patterns/singleton-design-pattern-in-java/

7. I have two arrays which contains integer. Write a program to merge those two arrays and remove duplicate elements? At the end, I need one array which should have unique elements?

http://stackoverflow.com/questions/5057156/merging-lists-into-a-single-array-with-unique-elements

8. Write a program to fetch the data from a table using JDBC and result set?

//howtodoinjava.com/2013/11/24/jdbc-select-query-example/

9. How to get data from HashMap?

//howtodoinjava.com/java/interviews-questions/how-hashmap-works-in-java/

10. Difference between Vector and ArrayList?

//howtodoinjava.com/java/collections/useful-java-collection-interview-questions/

11. Difference between sleep and wait?

//howtodoinjava.com/2013/03/08/difference-between-sleep-and-wait/

12. Also asked some sql queries.

Practice yourself.

13. Write a program to print Fibonacci series?

public class FibonacciSampleCode
{
    public static void main(String[] args)
    {
        FibonacciSampleCode fs = new FibonacciSampleCode();
        fs.fibonacci();
    }
    public void fibonacci()
    {
        int numb1 = 1;
        int numb2 = 1;
        int temp = 0;

        Scanner input=new Scanner(System.in);
        System.out.println("How Many Terms? (Up To 45)");
        int x=input.nextInt();
        x=x-2;

        System.out.println(numb1);
        System.out.println(numb2);

        for (int i = 0; i < x; i++)
        {
            System.out.println(numb1 + numb2 + " ");
            temp = numb1;
            numb1 = numb2;
            numb2 = temp + numb2;
        }
    }
}

14. Can we write try catch block like below code?

try
{
	try
	{
	}
}
catch()
{
}

//howtodoinjava.com/2012/12/07/why-try-catch-finally-blocks-require-braces/

15. What is the use of finally block?

http://stackoverflow.com/questions/15768645/what-is-the-benefit-to-use-finally-after-try-catch-block-in-java

16. What is the use of final keyword?

http://en.wikipedia.org/wiki/Final_%28Java%29

17. Can i declare class as static?

http://stackoverflow.com/questions/2376938/why-cant-a-java-class-be-declared-as-static

18. What is static method and static variable?

http://stackoverflow.com/questions/7815664/static-method-and-static-variable-java

19. Can I declare a class as private?

http://docs.oracle.com/javase/tutorial/java/javaOO/classdecl.html

20. What happens if i write return in try block? Will finally executes? What happens if write system.exit(), will finally block executes?

http://stackoverflow.com/questions/65035/does-finally-always-execute-in-java

21. Why you want to change the company?

http://www.linkedin.com/groups/How-do-you-answer-Why-1792709.S.54631120

Nobody expects you to tell the truth.. :-)

That’s all interview questions he was able to recall when he wrote me a mail regarding this. We hope that it will help some of us, who are planning our next interview with oracle.

Happy Learning!!

Comments

Subscribe
Notify of
guest
19 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments

About Us

HowToDoInJava provides tutorials and how-to guides on Java and related technologies.

It also shares the best practices, algorithms & solutions and frequently asked interview questions.

Our Blogs

REST API Tutorial

Dark Mode

Dark Mode