Java

Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.

Java is an object oriented programming language developed by Sun Microsystems in 1995.

Learn more about Java evolution

Sending email - James mail server API

As you might already know, we can use various APIs (generally Java Beans Components) provided by various vendors to carryout the tasks like printing, dealing with fax messages, scanning the images, ac...

Java generic data types

Javasoft has introduced generics data types as part of 1.5. This is one of the major items as part of this release.Generic types or parameterized typesWriting classes,interfaces and methods in a type ...

JDBC - ResultSet fetch size

The value of fetch size is used to decide about the no. of rows that will be transferred between the database server and the client at a point of time.If we set the fetch size to 10, the JDBC driver w...

Java - object types

Java objects are classified into "Mutable objects" and "Immutable objects".1. Mutable objects:Mutable objects are those objects whose contents can be modified. i.e.; when an object is created, values ...

Java - String Object

A string represents a group of characters. Strings are "String" class objects in Java.Creating Strings1. We can create a string by declaring and initializing a String class object directly. Eg: String...

Addition of integers - puzzle

Consider the below codepublic class LongPuzzle{ public static void main(String args[]) { int a = 0123; int b = 3210; System.out.println(a+b); }}What is the result?Have you answered 4444? N...