Mostly on the technology related
Developer Java Interview Questions
30,911 developer java interview questions shared by candidates
How can you make your own Immutable class? Java core
If parent class is serialized then how can we avoid serialization for the sub class ?
Questions on serialization and multi threading. Question on strategy design pattern. Basic questions on oracle PLSQL . Performance tuning in java. The interviewer did not know that there exists a try catch block in sql and we can throw and error from the catch block. The interviewer does not know the difference between sqlserver and oracle. He assumes both have the same features.
What is comparator comparable ?
are you interested in this position?
questions on generics, collections, string, JVM, oops concept, enterprise java basics
Assignment is hard if you don't know the various topics but you can google it to finish the project.
public void clearSourceListModel() { sourceListModel.clear(); } public void clearDestinationListModel() { destListModel.clear(); } public void addSourceElements(ListModel newValue) { fillListModel(sourceListModel, newValue); } public void setSourceElements(ListModel newValue) { clearSourceListModel(); addSourceElements(newValue); } public void addDestinationElements(ListModel newValue) { fillListModel(destListModel, newValue); } private void fillListModel(SortedListModel model, ListModel newValues) { int size = newValues.getSize();
import java.awt.BorderLayout; import java.awt.Color; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Arrays; import java.util.Collection; import java.util.Iterator; import java.util.SortedSet; import java.util.TreeSet; // importing xml file import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import java.io.File; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Marshaller; // importing xml file import javax.swing.AbstractListModel; import javax.swing.BorderFactory;
Viewing 3141 - 3150 interview questions