Find the output of the following program.
public class Solution
{
public static void main(String[] args)
{
byte x = 132;
x++;
x++;
System.out.print(x);
}
}

Posted on by