Data Types and Variables
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); }}

None of these
-127
2
Compiler error
129

ANSWER DOWNLOAD EXAMIANS APP