Data Types and Variables Determine output:public class Test{ int a = 10; public void method(int a){ a += 1; System.out.println(++a); } public static void main(String args[]){ Test t = new Test(); t.method(3); }} None of these 4 5 11 12 None of these 4 5 11 12 ANSWER DOWNLOAD EXAMIANS APP