0% found this document useful (0 votes)
47 views3 pages

Source Example: 4. A B A. B

The document discusses various Java concepts and technologies. It provides concise explanations and examples for serialization, JDK vs JRE, equals() vs ==, Comparator vs Comparable, wait/notify mechanism, checked vs unchecked exceptions, final vs finally vs finalize, web server vs app server, Struts architecture, forward vs sendRedirect, 2-tier vs 3-tier applications, version control process, JAR vs WAR files, left outer join, and UNION vs UNION ALL. Sources are provided for further reference on each topic.

Uploaded by

Shankar RB
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views3 pages

Source Example: 4. A B A. B

The document discusses various Java concepts and technologies. It provides concise explanations and examples for serialization, JDK vs JRE, equals() vs ==, Comparator vs Comparable, wait/notify mechanism, checked vs unchecked exceptions, final vs finally vs finalize, web server vs app server, Struts architecture, forward vs sendRedirect, 2-tier vs 3-tier applications, version control process, JAR vs WAR files, left outer join, and UNION vs UNION ALL. Sources are provided for further reference on each topic.

Uploaded by

Shankar RB
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

1. What is the purpose of serialization?

Answer: Serialization is the conversion of an object to a series of bytes, so that the object can be easily saved to persistent storage or streamed across a communication link. The byte stream can then be deserialised converted into a replica of the original object. Source | Example 2. What is the difference between JDK and JRE? Answer: Java Development Kit (JDK) is the most widely used Java Software Development Kit. Java Runtime Environment (JRE) is an implementation of the Java Virtual Machine which executes Java programs. Source | JDK Wiki | JVM Wiki 3. What is the difference between equals() and == ? Answer: Equals is intended to check logical equality and == checks if both references point to same object. (Thanks Sandeep)
4. a == b; a.equals(b); // Compares references, not values. // Compares values for equality.

Source 5. When will you use Comparator and Comparable interfaces? Answer: java.util.Comparator and java.lang.Comparable java.util.Comparator compares some other classs instances, while java.lang.Comparable compares itself with another object. Source | Example 6. What is the wait/notify mechanism? Answer: This deals with concurrent programming. The wait() and notify() methods are designed to provide a mechanism to allow a thread to be block until a specific condition is met. However, java.util.concurrent should be used instead of wait() and notify() to reduce complexity. Source | Java API | Java Technical Article 7. What is the difference between checked and unchecked exceptions? Answer: In general, unchecked exceptions represent defects in the program (bugs), which are normally Runtime exceptions. Furthermore, checked exceptions represent invalid conditions in areas outside the immediate control of the program. Source 8. What is the difference between final, finally and finalize? Answer: final is the keyword to declare a constant AND prevents a class from producing

subclasses. (Thanks Tom Ellis) finally is a block of code that always executes when the try block is finished, unless System.exit() was called. finalize() is an method that is invoked before an object is discarded by the garbage collector. Source | Final Usage |Finally Usage | Finalize() 9. What is the difference between web server and app server? Answer: A Web server exclusively handles HTTP requests, whereas an application server serves business logic to application programs through any number of protocols. Source 10. Explain the Struts1/Struts2/MVC application architecture? Answer: Struts was adopted by the Java developer community as a default web framework for developing web applications The MVC(Modelviewcontroller) an application that consist of three distinct parts. The problem domain is represented by the Model. The output to the user is represented by the View. And, the input from the user is represented by Controller. Source 11. What is the difference between forward and sendredirect? Answer: Both method calls redirect you to new resource/page/servlet. The difference between the two is that sendRedirect always sends a header back to the client/browser, containing the data in which you wanted to be redirected. Source 12. How does a 3 tier application differ from a 2 tier one? Answer: Tiers are the physical units of separation or deployment, while layers are the logical units of separation. Imagine that youre designing an e-commerce website. A 3 tier architecture would consist of web pages, a web server and a database, with the corresponding 3 layers being the Presentation, Business Logic and Database layers. If you take the database tier and layer out then your have a 2 tier architecture. Source 13. How does the version control process works? Answer: Initiate, pull, branch, merge, commit, push. (Init) Make your own repository. (Pull) Download an existing repository from a url. (Branch / Merge )Make revisions. Commit then push your modifications.

Git Cheat Sheet 14. What is the difference between JAR and WAR files? Answer: JAR files (Java ARchive) allows aggregating many files into one, it is usually used to hold Java classes in a library. WAR files (Web Application aRchive) stores XML, java classes, and JavaServer pages for Web Application purposes. Source 15. What is a Left outer join? Answer: This deals with SQL. Left outer join preserves the unmatched rows from the first (left) table, joining them with a NULL row in the shape of the second (right) table. Source | Joins Wiki 16. What is the difference between UNION and UNION ALL? Answer: This deals with SQL. UNION only selects distinct values, UNION ALL selects all values. Source | Example

You might also like