Pages

Friday, August 22, 2014

Email Template in php html - simple and flexible for email sending

Click here to view email code Just Click on above link and copy it and change code according to your requirement....
Read more

Wednesday, May 21, 2014

Top 10 Programming Languages of 2014 and any begginer should learn

1. Java  Java is a class-based, object-oriented programming language developed by Sun Microsystems in the 1990s. It's one of the most in-demand programming languages, a standard for enterprise software, web-based content, games and mobile apps, as well as the Android operating system. 2. PHP PHP (Hypertext Processor) is a free, server-side scripting language designed for dynamic websites and app development. It can be directly embedded...
Read more

Monday, May 19, 2014

Top 5 Classified sites worldwide with best user interface

The Top Five 1. 99LocalAds.com Post free classified ads with us! It's quick, simple and best free ad posting. Free classified website Free classified ads for cars, jobs, real estate & more Find what you are looking for or create your own ad for free! 2. Craigslist Best place for free ads. High exposure, just watch out for scams. Otherwise great traffic. Craigslist provides local classifieds and forums for jobs, housing, for sale, personals,...
Read more

Tuesday, July 3, 2012

program to accept three command line arguments from the user and to display it in sorted order

Write a program to accept three command line arguments from the user and to display it in sorted order.import java.util.Arrays;class sorting{ public static void main(String args[]) { if (args.length>0) { Arrays.sort(args); System.out.println(""); for(int i=0;iargs.length;i++) { System.out.println(args[i]); } } }}/args.length;i...
Read more

find the Factorial of a number using Recursion

Write a program to find the Factorial of a number using Recursion. Factorial can be defined as Factorial(n) = 1 * 2 * 3 ….* (n-1) * n.class rfactorial{ public static void main(String args[]) { int num=Integer.parseInt(args[0]); int fact; recursion r1=new recursion(); fact=r1.rec(num); System.out.println("The factorial for "+num+" is = "+fact); }}class recursion{ public int rec(int a) { int f; if(a==1 || a==0) { return(1); } else { f=a*rec(a-1);...
Read more

a program which accept amount in dollars and convert it to the rupees.

Write a program, which accept amount in dollars, and convert it to the rupees.class rupeeDollar{ public static void main(String args[]) { double rup,dol; dol=Double.parseDouble(args[0]); if(dol>0) { rup=dol*45.38; System.out.println("$"+dol+" is equal to "+rup+" INR"); } ...
Read more

find Prime numbers program in java

Write a program that prints prime numbers between 1 to n. Number n should be acepted as command line input.class PrimeNumber { public static void main (String args[]) { int num=Integer.parseInt(args[0]); int i,j; for(i=1;inum;i++) { for(j=2;ji;j++) { int n=i%j; if(n==0) {break;} } if(i==j) { System.out.print(" " + i); } } }}/i;j++)/num;i...
Read more