12345678910



Question 1: class S{ int x=0; S(){ x++; } public static void main(String args[]){ S s=new S(); System.out.println(s.x); } }
1. 3
2. 1