\n\n
\n
\n
\n
\n\n1\n2\n3\n4\n5\n6\n\n
\n
\n
\n

"}}}] }


Q.1
Which of the following automatic type conversion will be possible?
Q.2
What is the output of the following program?
class A{
        public static void main(String args[]){
	        byte b;
   	        int i = 258;
	        double d = 325.59;

	        b = (byte) i;
	        System.out.print(b);

	        i = (int) d;
	        System.out.print(i);

                b = (byte) d;
                System.out.print(b);
        }
}
0 h : 0 m : 1 s