You are on page 1of 1

Welcome to the World of JAVA Programing!!!

A Java program is mostly a collection of objects talking to other objects by inv oking each other's methods. Every object is of a certain type, and that type is defined by a class or an interface. Most Java programs use a collection of objec ts of many different types. Our objective is to come up with java example progra ms for each and every class provided by java documentation, which can be very mu ch helpful for java beginners. Knowledge Center block on right side of the page will randomly posts some quick information on java language. It could be quick learning for new java learners. Please send comments, broken link reports, errors, suggestions, and questions ab out this site to the author at java2novice@gmail.com. Collections & Util Package A collections framework is a unified architecture for representing and manipulat ing collections. Java Collections Framework reduces programming effort, increase s program speed and quality, allows interoperability among unrelated APIs, foste rs software reuse. more... Data Structures A data structure is a particular way of storing and organizing data in a compute r so that it can be used efficiently. Data structures provide a means to manage large amounts of data efficiently. efficient data structures are a key to design ing efficient algorithms. more... Java Interview Programs We have collected list of java interview programs from few software engineers an d also with my personal experience. In this section, we are trying to give you t he best solutions for these problems. Good interviewers are more interested in y our ability to code. more... Java Sorting Algorithms A sorting algorithm is an algorithm that puts elements of a list in a certain or der. The most-used orders are numerical order and lexicographical order. Efficie nt sorting is important for optimizing the use of other algorithms such as searc h and merge... more... Java JDBC Examples JDBC stands for Java Database Connectivity. JDBC API is a collection of classes and interfaces, which help a Java application to connect to SQL based relational databases by abstracting vendor specific details of the database. JDBC enables Java developers to connect to... more... Java Annotations Examples Java Annotations are also called Metadata. Annotations are introduced with JDK 5 onwards. Annotations allows us to add some form of metadata information into ou r source code, but it doesnot change the execution flow of the program. These an notations...

You might also like