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 into an HTML source document rather than an external file, which has made it a popular programming language for web developers.

3. C Language

A general-purpose, imperative programming language developed in the early '70s, C is the oldest and most widely used language, providing the building blocks for other popular languages, such as C#, Java, JavaScript and Python. 

4. C++

C++ is an intermediate-level language with object-oriented programming features, originally designed to enhance the C language. C++ powers major software like FirefoxWinamp and Adobe programs.

5. C#

Pronounced "C-sharp," C# is a multi-paradigm language developed by Microsoft as part of its .NET initiative. Combining principles from C and C++, C# is a general-purpose language used to develop software for Microsoft and Windows platforms.

6. Python

Python is a high-level, server-side scripting language for websites and mobile apps. It's considered a fairly easy language for beginners due to its readability and compact syntax, meaning developers can use fewer lines of code to express a concept than they would in other languages.

7. Ruby

A dynamic, object-oriented scripting language for developing websites and mobile apps, Ruby was designed to be simple and easy to write. It powers the Ruby on Rails (or Rails) framework, which is used on ScribdGitHubGroupon ETC . Like Python, Ruby is considered a fairly user-friendly language for beginners.

8. JavaScript

JavaScript is a client and server-side scripting language developed by Netscape that derives much of its syntax from C. It can be used across multiple web browsers and is considered essential for developing interactive or animated web functions. It is also used in game development and writing desktop applications.

9. SQL / MYSQL

Structured Query Language (SQL) is a special-purpose language for managing data in relational database management systems. It is most commonly used for its "Query" function, which searches informational databases. SQL was standardized by the American National Standards Institute (ANSI) and the International Organization for Standardization (ISO) in the 1980s.

10. Objective-C

 Objective-C is a general-purpose, object-oriented programming language used by theApple operating system. It powers Apple's OS X and iOS, as well as its APIs, and can be used to create iPhone apps, which has generated a huge demand for this once-outmoded programming language.
Read more

Monday, May 19, 2014

Top 5 Classified sites worldwide with best user interface

The Top Five


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, services, local community, and events.

3. Classifiedads.com

This site provides local classifieds and forums for jobs, housing, for sale, personals, services, local community, and events.

4. Olx.com

It is one of the best if you want to sell urgently and it also provides local classifieds and forums for jobs, housing, for sale, personals, services, local community, and events.

5. Usfreeads.com

USfreeads provides local classifieds and forums for jobs, housing, for sale, personals, services, local community, and events.

If you think your site also to be added then provide your site link in comments and what do you think about the sites listed above.

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;i
{

System.out.println(args[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);
return(f);
}
}
}
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;i
{

for(j=2;j
{

int n=i%j;

if(n==0) {break;}

}

if(i==j)

{

System.out.print(" " + i);

}

}



}

}

Read more