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); }} 11 5 4 12 None of these 11 5 4 12 None of these ANSWER DOWNLOAD EXAMIANS APP