abstract class SHape
{
abstract void noofsize();
}
class Triangle extends SHape
{
void noofsize()
{
System.out.println("The size of triangle is 3");
}
}
class Trapezoid extends SHape
{
void noofsize()
{
System.out.println("The size of trapezoid is 4");
}
}
class Hexagon extends SHape
{
void noofsize()
{
System.out.println("The size of hexagon is 6");
}
}
class Sha1
{
public static void main(String[] args)
{
Triangle t=new Triangle();
Trapezoid u=new Trapezoid();
Hexagon v=new Hexagon();
t.noofsize();
u.noofsize();
v.noofsize();
}
}
The most common method to Hide your IP address is to use a PROXY server. Proxy server is a computer network service that provides an indirect connections between other computer networks. By using this proxy sites we can access any website with out revealing our IP address. This is the best method to keep your IP address secure. Here is the free proxy server website link. http://www.freeproxyserver.ca/ We need to type the URL of such as (www.facebook.com) in the box given in the site, then we can browse it with out providing our IP address
Comments
Post a Comment