Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by whitelisting our website.

What will be output of following program? public class Test{public static void main(String[] args){byte b=127; b++; b++; System.out.println(b); } } ?

What will be output of following program? public class Test{public static void main(String[] args){byte b=127; b++; b++; System.out.println(b); } } ?

A. 127
B. -127
C. 129
D. -129