• +91 9723535972
  • info@interviewmaterial.com

Java Interview Questions and Answers

Java Interview Questions and Answers

Question - 11 : - Which containers use a border layout as their default layout?

Answer - 11 : - The Window, Frame and Dialog classes use a border layout as their default layout.

Question - 12 : - How are Observer and Observable used?

Answer - 12 : - Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated, it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects.

Question - 13 : - What  is Java?

Answer - 13 : - Java is an object-oriented programming language developed initially by James Gosling and colleagues at Sun Microsystems. The language, initially called Oak (named after the oak trees outside Gosling's office), was intended to replace C++, although the feature set better resembles that of Objective C. Java should not be confused with JavaScript, which shares only the name and a similar C-like syntax. Sun Microsystems currently maintains and updates Java regularly.

Question - 14 : - What does a well-written OO program look like?

Answer - 14 : - A well-written OO program exhibits recurring structures that promote abstraction, flexibility, modularity and elegance.

Question - 15 : - Can you have virtual functions in Java?

Answer - 15 : - Yes, all functions in Java are virtual by default. This is actually a pseudo trick question because the word "virtual" is not part of the naming convention in Java (as it is in C++, C-sharp and VB.NET), so this would be a foreign concept for someone who has only coded in Java. Virtual functions or virtual methods are functions or methods that will be redefined in derived classes.

Question - 16 : - Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a change to the map. He decided to make a clone of the map in order to save the original data on side. What do you think of it? ?

Answer - 16 : - If Jack made a clone of the map, any changes to the clone or the original map would be seen on both maps, because the clone of Map is a shallow copy. So Jack made a wrong decision.

Question - 17 : - What is more advisable to create a thread, by implementing a Runnable interface or by extending Thread class?

Answer - 17 : - Strategically speaking, threads created by implementing Runnable interface are more advisable. If you create a thread by extending a thread class, you cannot extend any other class. If you create a thread by implementing Runnable interface, you save a space for your class to extend another class now or in future.

Question - 18 : - What is NullPointerException and how to handle it?

Answer - 18 : - When an object is not initialized, the default value is null. When the following things happen, the NullPointerException is thrown: --Calling the instance method of a null object. --Accessing or modifying the field of a null object. --Taking the length of a null as if it were an array. --Accessing or modifying the slots of null as if it were an array. --Throwing null as if it were a Throwable value. The NullPointerException is a runtime exception. The best practice is to catch such exception even if it is not required by language design.

Question - 19 : - An application needs to load a library before it starts to run, how to code?

Answer - 19 : - One option is to use a static block to load a library before anything is called. For example, class Test { static { System.loadLibrary("path-to-library-file"); } .... } When you call new Test(), the static block will be called first before any initialization happens. Note that the static block position may matter.

Question - 20 : - How could Java classes direct program messages to the system console, but error messages, say to a file?

Answer - 20 : - The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output could be re-directed: Stream st = new Stream(new FileOutputStream("output.txt")); System.setErr(st); System.setOut(st);


NCERT Solutions

 

Share your email for latest updates

Name:
Email:

Our partners