What will be the output of the program?class Two { byte x; } class PassO { public static void main(String [] args) { PassO p = new PassO(); p.start(); } void start() { Two t = new Two(); System.out.print(t.x + " "); ...
See more
Download the Study24x7 App, so you can connect and collaborate.