WiFi Feed Back For New Routers in Ganpat
Posted by Parth Makadiya on 09:33:00 with 1 comment
Hello All,
Some of my colleagues Tested the G and H block's Wifi successfully. Now we want Feedback from you . Give us the real feedback How much you like our new Routers .
My Thoughts on new router.I think The speed is good enough to surf the internet .But the connection automatically disconnect itself after some time.AND THE MOST IMPORTANT THING,The restriction is very high every Developing site like Mozilla Developer , Chrome Developer and Chrome Experiments and so On...
CLICK HERE FOR FEEDBACK
or
http://docs.google.com/a/ganpatuniversity.ac.in/forms/d/1KinCBFhVyAQCqWxEmxDP3Nx39nz1Goq4AKLnE6pfGhI/viewform
/*
ReplyDelete* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pra6_1;
import java.util.Scanner;
/**
*
* @author 2it11
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Scanner sc=new Scanner(System.in);
int p=0,q=0,r=0;
System.out.println("enter the value of X : ");
int x=sc.nextInt();
System.out.println("enter the value of Y : ");
int y=sc.nextInt();
radius ra=new radius(p,q,r);
}
}
class radius
{
int x,y,r;
Scanner sc=new Scanner(System.in);
radius(int a,int b,int c)
{
// System.out.println("enter the value of X : ");
// x=sc.nextInt();
//System.out.println("enter the value of Y : ");
//y=sc.nextInt();
r=(x*x)+(y*y);
r=c*c;
System.out.println("the value of r is : "+r);
}
// radius(int d,int e,int f)
//{
//}
}