Mostly on the technology related
Java Developer Interviews
Java Developer Interview Questions
In your interview for a java developer position, be prepared to answer technical questions that test your understanding of Java basics. Interviewers may also ask open-ended questions to assess your coding and problem-solving abilities. Prepare for non-technical questions that focus on time management, interpersonal communication, and work ethic.
Top Java Developer Interview Questions & How to Answer
Question #1: What is the difference between HashTable and HashMap in Java?
Question #2: Write a program to determine if 243 is an Armstrong number.
Question #3: How do you produce quality code when you have several Java projects to complete at once?
30,911 java developer 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