Tuesday, 31 October 2017

GATE 2018: Procedure for requesting Change of Examination City

GATE 2018: Procedure for requesting Change of Examination City

Below video will guide you step-by-step. View it to get information to change examination city for GATE 2018. 


Wednesday, 20 August 2014

Important information for M.Tech admission seeker (Personal View)

Many students takes their career decisions without thinking, first find out what is your interest before taking any decision. Think every year many Engineers are getting passed but question is how many are actually satisfied with what they are doing after Engineer. Think twice what I mean to say don't just go for Engineering without thinking what you want to do in future, market status and please don't be in myth that when you take admission in Engineering or M.Tech there faculty will teach you every thing if even though your interest is not Engineer, Practically speaking they will only help you less than 3% in your studies rest more than 97% depends on you. As M.Tech admission are nearer before taking admission into M.Tech ask yourself this important question

“Why I am taking admission into M.Tech?”

Now your answer may be one of the following
1.       I dint get placed in B.Tech as my college doesn’t have placements and hoping for placement in M.Tech
2.       Want to go for Teaching profession
3.       Want to relax for a while as I was struggling for job and my parent's pressure to get job is increasing
4.       For Stipend (in case of GATE students)
5.       While studying M.Tech I want to prepare for Govt. job
6.       To enter into Research sector

If your answer is out of this then my suggestion for every option
1.       If your aim is to get placed then let me clear your chances to get recruited in Software company will be very less in 'on campus' or 'off campus recruitment' once you are done with M.Tech from university or private college apart from NITs or IITs or IIIT as companies will always prefer for B.Tech not M.Tech (chances are 99:1 for B.Tech and M.Tech) and finally you will regret for your decision to take admission in M.Tech. If willing for placements in M.Tech then take admission only in NITs, IITs, IIIT.
2.       If you want to go for teaching job then doing M.Tech is perfect decision but in this case M.Tech should be done from State (OU, JNTU) or Central Universities (NITs, IITs, IIIT) only.
3.       Then you are just trying to relax in war field.
4.       Good, provided you must also think about your future career plan as you will be having financial support provided you must utilize this financial resource and time you get during M.Tech for better career.
5.       This is wonderful option especially for GATE student as they will be getting M.Tech degree, Financial support and good career.
6.       If your goal is to enter into Research sector then take only admission in IITs or NITs.


"Think before taking admission!! Best of Luck for bright Career"

Saturday, 31 August 2013

Notification for PGEC / PGECET-2013 Final Phase Web Counselling

All the registered GATE/GPAT candidates and PGECET qualified and eligible candidates of 2013 are informed to attend PGEC / PGECET Web Counseling for admission into M.E./M.Tech./M.Arch./M.Planning/ M.Pharmacy/Pharm.D (P.B.) courses for the academic year 2013-2014.


For more details


Click here

Tuesday, 23 July 2013

PGEC/PGECET-2013 ADMISSIONS Notification released

The GATE qualified and eligible candidates of 2012 and 2013, GPAT and PGECET qualified and eligible Candidates of 2013 are informed to attend PGEC / PGECET Web Counseling for admission into M.E./ M.Tech./ M.Arch / M.Pharmacy/Pharm.D (P.B.) courses for the academic year 2013-2014 as per the
schedule given below at any one of the Help Line centers.

Candidates are informed that they should satisfy the admission rules prescribed in the related G.O. besides satisfying the eligibility criteria of the respective universities and should be prepared to pay the tuition fee as applicable.

The left over seats after allotment for GATE / GPAT Candidates are alone available for PGECET candidates This notification itself is a call for counseling.

No separate call letters are sent to the individual candidates. Mere attending counseling does not guarantee a seat. Candidates have to pay non-refundable processing fee of Rs.300/- (SC/ST) and Rs.600/-(others) at
the time of certificate verification.


For More details Click here

Wednesday, 26 June 2013

RMI implementation program

Hello.java

import java.rmi.*;
public interface Hello extends Remote
{
String sayHello(String s) throws RemoteException;

}


HelloImpl.java

import java.rmi.*;
import java.rmi.server.*;
public class HelloImpl extends UnicastRemoteObject implements Hello
{
private int i;
public HelloImpl() throws RemoteException
{
System.out.println("Object created");
}
public String sayHello(String s) throws RemoteException
{
i++;
return "Hello " + s + " Yours is " + i + " request.";
}

}

HelloServer.java

import java.rmi.*;
import java.rmi.registry.*;
public class HelloServer
{
public static void main(String[] args)
{
try
{
LocateRegistry.createRegistry(1112);
HelloImpl r = new HelloImpl();
Naming.rebind("//127.0.0.1:1112/value", r);
System.out.println(" Object ready");
}
catch (Exception e)
{
System.out.println(e);
}
}

}

HelloClient.java

import java.rmi.*;
public class HelloClient
{
public static void main(String[] args)
{
try
{
Remote r = Naming.lookup("//127.0.0.1:1112/value");
Hello i = (Hello) r;
String result = i.sayHello(args[0]);
System.out.println( "From Server: " + result);
}
catch (Exception e)
{
System.out.println(e);
}
}

}

Best geography books for UPSC prelims, mains

This post is intended to clear the confusion that prevails among the aspirants over how to prepare for UPSC geography and the best books f...