Question Banks - Geocities Dump

Question 1 of 10

What is the output for the following code ?
class Q014{
	
	public String get(int i){
		return null;
	}
	
	public static void main(String ka[]){
		System.out.println((new Q014()).get(1));
	}
};