Questions

30:00

Consider the following method:
static <T> T pick (T input1, T input2){
	return input2;
}
public static void main(String[] args) { 
	var aai = pick("AAI", 43);
}
What will be the type of the variable aai?

1 / 10