SPRING Framework Open source framework provides a comprehensive programming and configuration model for enterprise applications, Spring helps in maintaining...
Author - Mathan Lal
Java Spring Training Open source framework provides a comprehensive programming and configuration model for enterprise applications, Spring helps in...
[java] /** @Author:Candid @description:Math Example program for loglp(double x) */ public class Math { public static void main(String args[]) { double x=4;...
[java] //Math Example program for getExponent(Float f) /** @author:candidjava.com @Description:Returns the exponent used in the representation of a float */...
[java] //Example program for Exponent /** @author:candidjava.com @Description:program for exponent using exp() method */ public class expo { public static void...
[java] /** Author :candidjava.com Description: Compares the specified Object with this Map for equality, as per the definition in the Map interface /* import...
[java] /** Author :candidjava.com Description: Returns a Set view of the entries contained in this Hashtable */ import java.util.*; import java.util.Hashtable;...
[java] /** Author :candidjava.com Description: Returns an enumeration of the values in this hashtable. */ import java.util.*; import java.util.Hashtable;...
[java] /** Author :candidjava.com Description: Tests if some key maps into the specified value in this hashtable */ import java.util.*; import java.util...
[java] /** Author :candidjava.com Description: Clears this hashtable so that it contains no keys. */ import java.util.*; import java.util.Hashtable; import...
[java] /** Author :candidjava.com Description: Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not...
[java] /** Author :candidjava.com Description: Returns the Last element in the list. */ import java.io.IOException; import java.util.*; public class...
[java] /** Author :candidjava.com Description: Returns the first element in the list. */ import java.io.IOException; import java.util.*; public class...
[java] /** Author :candidjava.com Description: Returns the element at the specified position in this list. */ import java.io.IOException; import java.util.*;...
[java] /** Author :candidjava.com Description: It Returns an iterator over the elements in this deque in reverse sequential order. The elements will be...
[java] /*java program for Division of a number*/ /** *@author:Candidjava.com *@Description:To calculate the Division of two number using Division operator */...
[java] /*java program for multiplication of a numbers*/ /** *@author:Candidjava.com *@Description:To calculate the multiples of two number using muliple...
[java] /* Program for pass by value*/ /** *@author:Candidjava.com *@Description: passing values to method */ public class form { String name; int age; String...
[java] /*To find the area of triangle*/ /** *@author:Candidjava.com *@Description:To calculate area of trianlge */ public class Area { public static void...
[java] /** @author:candidjava.com @description:Program to display Numbers from 1 to N using While Loop */ public class displaynumbers { public static void...