You might be tired of your free hosting Domain URL.In this post I am gonna show you how to get free cu.cc (E.g. xxxxx.cu.cc)domain for your site.Yester day i came across the site which provide free domain name(s) for 2 years for free.So I tried to register my blog there and it's very easy.Here is the step to get free domain name
Rabu, 29 Agustus 2012
Sabtu, 25 Agustus 2012
Easy way to earn money online with advertisements
Best selling and shopping at: ebay
Hello there,
In this post i'm gonna giving you information about site which gives you ads to display on your site if you are continuously disapproved by Google Adsense.
I apply many time for Google AdSense but disapproved every time.Suddenly i come come across some site which are alternatives to Google AdSense.
The first one is VigLink. This site provide you in text link for your contents.it will detect some specific product name and will put link to that site.when user click on that link your link count will increase. Click here to register with VigLink
The second is clicksor .This site provides text link with graphic link also. it will also show pop-up on your site and you will get money for every click and referral.Payment will be done using paypal or check. Click Here to register with clicksor
The next is CBPROADSit will provide you a direct link of ads with various types of ads(e.g ontextual ads,widget ads for mobile ,block image ads etc.).Click here to register with CBPROADS
The next is adpruddenceit will provide you a direct CODE of ads with various types and size of ad blocks.Click here to register with adprudence
The next is infolinks.This site is good if your site have enough textual content on it.it will provide in text link for your page.
The next is eDomz.you just need to register your site here.they will verify your site and reply you.need minimum 25$ to withdraw money.Click Here to register for eDomz
Some more are also avalable:
www.affinity.com/
www.infolinks.com/join-us
www.luminate.com/
www.hubpages.com/
www.tagvillage.com
www.breezeads.com/
See Also:
Minggu, 19 Agustus 2012
Example of polymorphism in java with abstract class
Best selling and shopping at: ebay
free Download unlimited wallpaper at: Photoshare.byethost3.com
Program definition:
Write a program to create abstract class shape having instance variables dim1(dimension) in double and color and two member methods: 1.void display():displays the color of the specific shape. 2.abstract void area(): gives the area for given shape.
Note:
A method for which you want to ensure that it must be overridden(In following example area()),you can define such method as abstract methodand class that contains one or more abstract method must be abstract class.Just put keyword abstract to define it as abstract class
abstract class shape
{
private double dim1;
String color;
shape(double d1,String c)
{
dim1=d1;color=c;
}
void display()
{
System.out.println("Color :"+color);
}
abstract void area();
public double getdim1(){return(dim1);}
}
class triangle extends shape
{
private double dim2;//dim1=base,dim2-altitude
triangle(double d1,double d2,String c)
{
super(d1,c);
dim2=d2;
}
void area()
{
double d1=getdim1();
double a;
a =d1*dim2/2;
System.out.println("Area :"+a);
}
}
class square extends shape
{
square(double d1,String c)
{
super(d1,c);
}
void area()
{
double d1=getdim1();
double a=d1*d1;
System.out.println("Area :"+a);
}
}
class rectangle extends shape
{
private double dim2;//dim1=width,dim2=breath
rectangle(double d1,double d2,String c)
{
super(d1,c);
dim2=d2;
}
void area()
{
double d1=getdim1();
double a= d1*dim2;
System.out.println("Area :"+a);
}
}
class circle extends shape
{
circle(double d1,String c)
{
super(d1,c);
}
void area()
{
double d1=getdim1();
double pi=3.1416;
double a= 2*pi*d1;
System.out.println("Area :"+a);
}
}
class a9
{
public static void main(String args[])
{
triangle t = new triangle(2,4,"red");
t.display();
t.area();
square s = new square(4,"green");
s.display();
s.area();
rectangle r = new rectangle(4,8,"yellow");
r.display();
r.area();
circle c = new circle(6,"orange");
c.display();
c.area();
}
}