Output when the object of NowS is created ??? import java.util.*; class Sam { private int no; Sam() {no=0;} Sam(int n) {no=n;} } class NowS extends Sam{ private int x; NowString() { x=12; Super.Sam(12); System.out.println(x); } }
12
nothing
compilation error
0