[java] /** *@author:Candidjava.com *@Discription: collact the student marks and find the average of marks */ public class Avg { public static void...
Author - Mathan Lal
[java] /** *@author:Candidjava.com *@discription: sum of first N numbers */ public class Sum { public static void main(String[] args) { int n = 10; int sum =...
[java] /** @author:candidjava.com @description:program to display odd numbers between 1 to 100 */ public class odd { public static void main(String org[]) {...
[java] /* Program for odd numbers*/ /** *@author:Candidjava.com *@Description: To check a given number is Odd */ public class Odd { public static void...
[java] /*program to find whether the given number is odd or even*/ /** @author:candidjava.com @Description: check the given number to know whether it is odd or...
[java] /* java program for Fibnacci series*/ /** *@author:Candidjava.com *@Description:Program for find the Fibonacci series of a given number */ public class...
[java] /** *@author:Candidjava.com *@Description: To check a Given number is palindrome or not */ public class Palindrome { public static void main(String[]...
Java Example Program for palindrome _______________________________________________________________________________________________________________________...
Remote Method Invocation (RMI) Description: Java RMI allowed programmer to execute remote function class using the same semantics as local functions calls. To...