Java Interview Questions and Answers – JSP

Java Interview Questions | JSP   Java Interview Questions : JSP   What is a JSP Page ? A Java Server Page (JSP) is a text document that contains two types of text: static data and JSP elements. Static data can be expressed in any …

Java Interview Questions and Answers – Servlets

Java Interview Questions | Servlets   Java Interview Questions : Servlets   What is a Servlet ? The servlet is a Java programming language class used to process client requests and generate dynamic web content. Servlets are mostly used to process or store data submitted …

Java Interview Questions and Answers – Remote Method Invocation (RMI)

Java Interview Questions | Remote Method Invocation (RMI)   Java Interview Questions : Remote Method Invocation (RMI)   What is RMI ? The Java Remote Method Invocation (Java RMI) is a Java API that performs the object-oriented equivalent of remote procedure calls (RPC), with support …

Java Interview Questions and Answers – JDBC

Java Interview Questions | JDBC   Java Interview Questions : JDBC   What is JDBC ? JDBC is an abstraction layer that allows users to choose between databases. JDBC enables developers to write database applications in Java, without having to concern themselves with the underlying …

Java Interview Questions and Answers – Swing

Java Interview Questions | Swing   Java Interview Questions : Swing   What is the difference between a Choice and a List ? A Choice is displayed in a compact form that must be pulled down, in order for a user to be able to …

Java Interview Questions and Answers – Java Applets

Java Interview Questions | Java Applets   Java Interview Questions : Java Applets   What is an Applet ? A java applet is program that can be included in a HTML page and be executed in a java enabled client browser. Applets are used for …

Java Interview Questions and Answers – Exception Handling

Java Interview Questions | Exception Handling   Java Interview Questions : Exception Handling   What are the two types of Exceptions in Java ? Which are the differences between them ? Java has two types of exceptions: checked exceptions and unchecked exceptions. Unchecked exceptions do …

Java Interview Questions and Answers – Garbage Collectors

Java Interview Questions | Garbage Collectors   Java Interview Questions : Garbage Collectors   What is the purpose of garbage collection in Java, and when is it used ? The purpose of garbage collection is to identify and discard those objects that are no longer needed …